diff options
| author | Max Nanis | 2025-06-10 05:21:19 +0700 |
|---|---|---|
| committer | Max Nanis | 2025-06-10 05:21:19 +0700 |
| commit | d7bb480ab6bd2172a04ecb304d012206e0c03e8f (patch) | |
| tree | 783c57ea92e9bf50aec460e2e9b4a9e0ef7a512b /src/store.ts | |
| parent | abec6d734cde8a2bb0924989b1c5801e924137c3 (diff) | |
| download | panel-ui-d7bb480ab6bd2172a04ecb304d012206e0c03e8f.tar.gz panel-ui-d7bb480ab6bd2172a04ecb304d012206e0c03e8f.zip | |
Adding taskStatus fetch. Showing list of Task Attempts & starting heatmap calendar.
Diffstat (limited to 'src/store.ts')
| -rw-r--r-- | src/store.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/store.ts b/src/store.ts index 7ff1bfc..db283f8 100644 --- a/src/store.ts +++ b/src/store.ts @@ -10,6 +10,8 @@ import upkQuestionReducers from "@/models/upkQuestionSlice" import userUpkAnswerReducers from "@/models/userUpkAnswerSlice.ts" import userMarketplaceReducers from "@/models/userMarketplaceAnswerSlice.ts" import userProfileReducers from "@/models/userProfileSlice.ts" +import transactionHistoryReducers from "@/models/transactionHistorySlice.ts" +import taskStatusReducers from "@/models/taskStatusSlice.ts" export const store = configureStore({ reducer: { @@ -18,6 +20,7 @@ export const store = configureStore({ // - Read Only // -- These act as API cache stores to allow background loading buckets: bucketReducers, + taskStatus: taskStatusReducers, questions: questionReducers, upkQuestions: upkQuestionReducers, @@ -31,7 +34,8 @@ export const store = configureStore({ answers: answerReducers, cashoutMethods: cashoutMethodReducers, - wallet: walletReducers + wallet: walletReducers, + transactionHistory: transactionHistoryReducers } }) |
