This commit is contained in:
2023-07-18 19:47:23 +01:00
parent 9007463f6d
commit 1ffb732bfa
7 changed files with 222 additions and 119 deletions
+5 -1
View File
@@ -5,7 +5,8 @@ const initialState = {
pendingListTable: false,
myTaskTable: false,
othersInterestedTable: false,
couponTable: false
couponTable: false,
walletTable: false,
};
export const tableReloadSlice = createSlice({
@@ -29,6 +30,9 @@ export const tableReloadSlice = createSlice({
case "COUPONTABLE":
state.couponTable = !state.couponTable;
return;
case "WALLETTABLE":
state.walletTable = !state.walletTable;
return;
default:
return state;
}