X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/040d25dbcc9ec46c4c21c945ccf02dcf1bf44c26..09c61f87d52388ebfe97f478d536f4f194755401:/src/store/store.ts diff --git a/src/store/store.ts b/src/store/store.ts index 499d89e82f..6b9c31ff4e 100644 --- a/src/store/store.ts +++ b/src/store/store.ts @@ -8,6 +8,7 @@ import thunkMiddleware from 'redux-thunk'; import { History } from "history"; import projectsReducer, { ProjectState } from "./project/project-reducer"; import authReducer, { AuthState } from "./auth/auth-reducer"; +import collectionsReducer from "./collection/collection-reducer"; const composeEnhancers = (process.env.NODE_ENV === 'development' && @@ -23,6 +24,7 @@ export interface RootState { const rootReducer = combineReducers({ auth: authReducer, projects: projectsReducer, + collections: collectionsReducer, router: routerReducer });