Clean up and auto refresh

This commit was merged in pull request #547.
This commit is contained in:
2024-01-13 19:06:35 +01:00
parent 1ef92207fb
commit 185ca14750
7 changed files with 78 additions and 74 deletions
-4
View File
@@ -8,7 +8,6 @@ const initialState = {
couponTable: false,
walletTable: false,
uploadsTable: false,
yourPageTable: false,
};
export const tableReloadSlice = createSlice({
@@ -38,9 +37,6 @@ export const tableReloadSlice = createSlice({
case "UPLOADSTABLE":
state.uploadsTable = !state.uploadsTable;
return;
case "YourPageTable":
state.yourPageTable = !state.yourPageTable;
return;
default:
return state;
}