summaryrefslogtreecommitdiff
path: root/src/reducers/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/reducers/index.js')
-rw-r--r--src/reducers/index.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/reducers/index.js b/src/reducers/index.js
index 4ddaaec9..d3ace393 100644
--- a/src/reducers/index.js
+++ b/src/reducers/index.js
@@ -4,7 +4,7 @@ import {interactionLevel} from "./interaction-level";
import {modals} from "./modals";
import {objects} from "./objects";
import {authorizationsOfCurrentUser, authVisibilityFilter, currentSimulationId} from "./simulations";
-import {currentDatacenterId} from "./topology";
+import {currentDatacenterId, currentRoomInConstruction} from "./topology";
const rootReducer = combineReducers({
auth,
@@ -15,6 +15,7 @@ const rootReducer = combineReducers({
currentSimulationId,
currentDatacenterId,
interactionLevel,
+ currentRoomInConstruction,
});
export default rootReducer;