We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f360efd commit 58c8631Copy full SHA for 58c8631
app/examples/Basic/store.ts
@@ -1,6 +1,6 @@
1
import { configureStore, createSlice } from '@reduxjs/toolkit';
2
3
-import { workflowManagerReducer } from '../../../dist';
+import { workflowManagerInternalReducer } from '../../../dist';
4
5
const basicSlice = createSlice({
6
name: '@basic',
@@ -9,6 +9,6 @@ const basicSlice = createSlice({
9
});
10
11
export const store = configureStore({
12
- reducer: { workflowManagerReducer, basic: basicSlice.reducer },
+ reducer: { workflowManagerInternalReducer, basic: basicSlice.reducer },
13
devTools: process.env.NODE_ENV !== 'production',
14
0 commit comments