added uploaded files

This commit is contained in:
2023-08-09 21:59:46 +01:00
parent 20a86f4802
commit a1bf0bad0f
5 changed files with 305 additions and 390 deletions
+4
View File
@@ -7,6 +7,7 @@ const initialState = {
othersInterestedTable: false,
couponTable: false,
walletTable: false,
uploadsTable: false,
};
export const tableReloadSlice = createSlice({
@@ -33,6 +34,9 @@ export const tableReloadSlice = createSlice({
case "WALLETTABLE":
state.walletTable = !state.walletTable;
return;
case "UPLOADSTABLE":
state.uploadsTable = !state.uploadsTable;
return;
default:
return state;
}