summaryrefslogtreecommitdiff
path: root/app/client/modules
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-01-11 15:40:21 +0100
committerJules Laplace <julescarbon@gmail.com>2020-01-11 15:40:21 +0100
commit740d31c9564d6bf02eca935f1f979ddd72b1ffbc (patch)
tree378ea1f10bd48966d4a9523cbba913298e166701 /app/client/modules
parent7e5d9e75270d083cb2bc69bed07bb6b492e65d82 (diff)
deploy bundle
Diffstat (limited to 'app/client/modules')
-rw-r--r--app/client/modules/biggan/biggan.tasks.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/app/client/modules/biggan/biggan.tasks.js b/app/client/modules/biggan/biggan.tasks.js
index a28bf20..3c39c85 100644
--- a/app/client/modules/biggan/biggan.tasks.js
+++ b/app/client/modules/biggan/biggan.tasks.js
@@ -8,7 +8,6 @@ import actions from '../../actions'
import module from './biggan.module'
export const invert_task = (folder_id) => dispatch => {
- if (dataset === 'PLACEHOLDER') return
const task = {
module: module.name,
activity: 'invert',
@@ -16,10 +15,6 @@ export const invert_task = (folder_id) => dispatch => {
folder_id: folder_id,
}
}
- if (!task.dataset) {
- console.error("invert task: no dataset specified")
- return
- }
console.log(task)
return actions.queue.add_task(task)
}