aboutsummaryrefslogtreecommitdiff
path: root/src/store.ts
diff options
context:
space:
mode:
authorMax Nanis2025-06-09 19:12:44 +0700
committerMax Nanis2025-06-09 19:12:44 +0700
commit897e93b3a6596d25c19fe0a3579d9cd4c9ea66e7 (patch)
treee9adf209e4cf9061b3ac383c8d13c2ded0203daf /src/store.ts
parent74890e251dee3e0f195583431cb48b9f3a58ecc9 (diff)
downloadpanel-ui-897e93b3a6596d25c19fe0a3579d9cd4c9ea66e7.tar.gz
panel-ui-897e93b3a6596d25c19fe0a3579d9cd4c9ea66e7.zip
Debugging reducer logic for Upk and Marketplace Answers, along with Upk global definitions
Diffstat (limited to 'src/store.ts')
-rw-r--r--src/store.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/store.ts b/src/store.ts
index cfa64ec..9600704 100644
--- a/src/store.ts
+++ b/src/store.ts
@@ -6,6 +6,9 @@ import appReducers from "@/models/appSlice.ts"
import answerReducers from "@/models/answerSlice.ts"
import cashoutMethodReducers from "@/models/cashoutMethodSlice.ts"
import walletReducers from "@/models/walletSlice.ts"
+import upkQuestionReducers from "@/models/upkQuestionSlice"
+import upkAnswerReducers from "@/models/upkAnswerSlice"
+import marketplaceReducers from "@/models/marketplaceAnswerSlice"
export const store = configureStore({
reducer: {
@@ -14,7 +17,11 @@ export const store = configureStore({
// - Read Only
// -- These act as API cache stores to allow background loading
buckets: bucketReducers,
+
questions: questionReducers,
+ upkQuestions: upkQuestionReducers,
+ upkAnswers: upkAnswerReducers,
+ marketplaceAnswers: marketplaceReducers,
// - Read Write
// -- This stores user engagement (eg: answering any questions)