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, }, });