added the pageload api

This commit was merged in pull request #546.
This commit is contained in:
2024-01-10 17:41:52 +01:00
parent 9dde87277c
commit 57be599bb5
5 changed files with 91 additions and 1 deletions
+4
View File
@@ -8,6 +8,7 @@ const initialState = {
couponTable: false,
walletTable: false,
uploadsTable: false,
yourPageTable: false,
};
export const tableReloadSlice = createSlice({
@@ -37,6 +38,9 @@ export const tableReloadSlice = createSlice({
case "UPLOADSTABLE":
state.uploadsTable = !state.uploadsTable;
return;
case "YourPageTable":
state.yourPageTable = !state.yourPageTable;
return;
default:
return state;
}