summaryrefslogtreecommitdiff
path: root/frontend/src/actions/states.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/actions/states.js')
-rw-r--r--frontend/src/actions/states.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/frontend/src/actions/states.js b/frontend/src/actions/states.js
index b3a355a2..430fbd09 100644
--- a/frontend/src/actions/states.js
+++ b/frontend/src/actions/states.js
@@ -1,9 +1,9 @@
-export const ADD_BATCH_TO_STATES = "ADD_BATCH_TO_STATES";
+export const ADD_BATCH_TO_STATES = 'ADD_BATCH_TO_STATES'
export function addBatchToStates(objectType, objects) {
- return {
- type: ADD_BATCH_TO_STATES,
- objectType,
- objects
- };
+ return {
+ type: ADD_BATCH_TO_STATES,
+ objectType,
+ objects,
+ }
}