offer list flat banner fixed

This commit is contained in:
victorAnumudu
2024-09-26 16:54:32 +01:00
parent 7e8704d633
commit 22250da988
6 changed files with 121 additions and 15 deletions
+4
View File
@@ -14,6 +14,7 @@ const initialState = {
familyOfferList: false,
parentFamilyTaskList: false,
offerInterestListReload: false,
homeBanners: false,
};
export const tableReloadSlice = createSlice({
@@ -61,6 +62,9 @@ export const tableReloadSlice = createSlice({
case "OFFERINTERESTLISTRELOAD": // to reload offer interest list of owner when a worker sends interest in a job
state.offerInterestListReload = !state.offerInterestListReload;
return;
case "HOMEBANNERS": // to reload offer interest list of owner when a worker sends interest in a job
state.homeBanners = !state.homeBanners;
return;
default:
return state;
}