From f686a985b1f0608f10b4d1a1d8862f38a14c1132 Mon Sep 17 00:00:00 2001 From: VividTruthKeeper Date: Fri, 10 Feb 2023 01:20:29 +0500 Subject: [PATCH] reducer added to all reducers --- src/store/functionality.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/store/functionality.ts b/src/store/functionality.ts index 8bba238..e82cb7b 100644 --- a/src/store/functionality.ts +++ b/src/store/functionality.ts @@ -4,10 +4,12 @@ import { combineReducers, configureStore } from "@reduxjs/toolkit"; // Reducers import { activeLinkReducer } from "../reducers/activeLink.reducer"; import { languageReducer } from "../reducers/language.reducer"; +import { dataReducer } from "../reducers/dataReducer"; export const allReducers = combineReducers({ activeLink: activeLinkReducer, language: languageReducer, + dataReducer, }); export const functionalityStore = configureStore({