summaryrefslogtreecommitdiff
path: root/frontend/src/actions/modals/experiments.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/actions/modals/experiments.js')
-rw-r--r--frontend/src/actions/modals/experiments.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/frontend/src/actions/modals/experiments.js b/frontend/src/actions/modals/experiments.js
index df939fa5..37f1922f 100644
--- a/frontend/src/actions/modals/experiments.js
+++ b/frontend/src/actions/modals/experiments.js
@@ -1,14 +1,14 @@
-export const OPEN_NEW_EXPERIMENT_MODAL = "OPEN_NEW_EXPERIMENT_MODAL";
-export const CLOSE_NEW_EXPERIMENT_MODAL = "CLOSE_EXPERIMENT_MODAL";
+export const OPEN_NEW_EXPERIMENT_MODAL = 'OPEN_NEW_EXPERIMENT_MODAL'
+export const CLOSE_NEW_EXPERIMENT_MODAL = 'CLOSE_EXPERIMENT_MODAL'
export function openNewExperimentModal() {
- return {
- type: OPEN_NEW_EXPERIMENT_MODAL
- };
+ return {
+ type: OPEN_NEW_EXPERIMENT_MODAL,
+ }
}
export function closeNewExperimentModal() {
- return {
- type: CLOSE_NEW_EXPERIMENT_MODAL
- };
+ return {
+ type: CLOSE_NEW_EXPERIMENT_MODAL,
+ }
}