From f5ba1914a2c880cef7f967b7e232b89ac37bc6d9 Mon Sep 17 00:00:00 2001 From: Paul Bui-Quang Date: Fri, 4 Oct 2024 17:11:49 +0200 Subject: [PATCH] fix: add missing valueset store --- src/state/store.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/state/store.ts b/src/state/store.ts index a33278455..61682645d 100644 --- a/src/state/store.ts +++ b/src/state/store.ts @@ -24,6 +24,7 @@ import pmsi from './pmsi' import me from './me' import syncHierarchyTable from './syncHierarchyTable' import warningDialog from './warningDialog' +import valueSets from './valueSets' const cohortCreationReducer = combineReducers({ criteria, @@ -33,6 +34,7 @@ const cohortCreationReducer = combineReducers({ const rootReducer = combineReducers({ me, cohortCreation: cohortCreationReducer, + valueSets, exploredCohort, drawer, message,