diff options
Diffstat (limited to 'src/reducers/construction-mode.js')
| -rw-r--r-- | src/reducers/construction-mode.js | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/reducers/construction-mode.js b/src/reducers/construction-mode.js index c4c0c010..f58684e6 100644 --- a/src/reducers/construction-mode.js +++ b/src/reducers/construction-mode.js @@ -1,12 +1,15 @@ -import {combineReducers} from "redux"; -import {OPEN_EXPERIMENT_SUCCEEDED} from "../actions/experiments"; -import {GO_DOWN_ONE_INTERACTION_LEVEL} from "../actions/interaction-level"; +import { combineReducers } from "redux"; +import { OPEN_EXPERIMENT_SUCCEEDED } from "../actions/experiments"; +import { GO_DOWN_ONE_INTERACTION_LEVEL } from "../actions/interaction-level"; import { CANCEL_NEW_ROOM_CONSTRUCTION_SUCCEEDED, FINISH_NEW_ROOM_CONSTRUCTION, START_NEW_ROOM_CONSTRUCTION_SUCCEEDED } from "../actions/topology/building"; -import {START_RACK_CONSTRUCTION, STOP_RACK_CONSTRUCTION} from "../actions/topology/room"; +import { + START_RACK_CONSTRUCTION, + STOP_RACK_CONSTRUCTION +} from "../actions/topology/room"; export function currentRoomInConstruction(state = -1, action) { switch (action.type) { |
