aboutsummaryrefslogtreecommitdiff
path: root/jb-ui/src/store.ts
diff options
context:
space:
mode:
Diffstat (limited to 'jb-ui/src/store.ts')
-rw-r--r--jb-ui/src/store.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/jb-ui/src/store.ts b/jb-ui/src/store.ts
index 24f1654..7b4d3e3 100644
--- a/jb-ui/src/store.ts
+++ b/jb-ui/src/store.ts
@@ -1,5 +1,6 @@
import appReducers from "@/models/appSlice"
import grlStatsReducers from "@/models/grlStatsSlice"
+import grlEventsReducers from "@/models/grlEventsSlice"
import profilingQuestionsReducers from "@/models/profilingQuestionsSlice"
import type { Action, ThunkAction } from '@reduxjs/toolkit'
import { configureStore } from '@reduxjs/toolkit'
@@ -9,6 +10,7 @@ export const store = configureStore({
reducer: {
app: appReducers,
stats: grlStatsReducers,
+ events: grlEventsReducers,
profilingQuestions: profilingQuestionsReducers,
}
})