aboutsummaryrefslogtreecommitdiff
path: root/src/store.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/store.ts')
-rw-r--r--src/store.ts7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/store.ts b/src/store.ts
index 4e56b39..cfa64ec 100644
--- a/src/store.ts
+++ b/src/store.ts
@@ -4,6 +4,8 @@ import bucketReducers from "@/models/bucketSlice.ts"
import questionReducers from "@/models/questionSlice.ts"
import appReducers from "@/models/appSlice.ts"
import answerReducers from "@/models/answerSlice.ts"
+import cashoutMethodReducers from "@/models/cashoutMethodSlice.ts"
+import walletReducers from "@/models/walletSlice.ts"
export const store = configureStore({
reducer: {
@@ -16,7 +18,10 @@ export const store = configureStore({
// - Read Write
// -- This stores user engagement (eg: answering any questions)
- answers: answerReducers
+ answers: answerReducers,
+
+ cashoutMethods: cashoutMethodReducers,
+ wallet: walletReducers
}
})