From afccce0be34b53476e83bebf4a898623b5c6b657 Mon Sep 17 00:00:00 2001 From: Atharva Ombase <94031822+atharvaombase@users.noreply.github.com> Date: Sat, 19 Apr 2025 18:56:57 +0530 Subject: [PATCH] Feat:Added the upload reducer in the store for re-renders --- Frontend/src/store/store.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Frontend/src/store/store.js b/Frontend/src/store/store.js index 0ded312..5f5a518 100644 --- a/Frontend/src/store/store.js +++ b/Frontend/src/store/store.js @@ -1,9 +1,11 @@ // src/redux/store.js import { configureStore } from "@reduxjs/toolkit"; import pathReducer from "./pathSlice"; +import setIsUploadingReducer from "./UploadStatusSlice"; export const store = configureStore({ reducer: { path: pathReducer, + upload: setIsUploadingReducer, }, });