Skip to content

Commit 58c8631

Browse files
committed
fix: workflow manager reducer name
1 parent f360efd commit 58c8631

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/examples/Basic/store.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { configureStore, createSlice } from '@reduxjs/toolkit';
22

3-
import { workflowManagerReducer } from '../../../dist';
3+
import { workflowManagerInternalReducer } from '../../../dist';
44

55
const basicSlice = createSlice({
66
name: '@basic',
@@ -9,6 +9,6 @@ const basicSlice = createSlice({
99
});
1010

1111
export const store = configureStore({
12-
reducer: { workflowManagerReducer, basic: basicSlice.reducer },
12+
reducer: { workflowManagerInternalReducer, basic: basicSlice.reducer },
1313
devTools: process.env.NODE_ENV !== 'production',
1414
});

0 commit comments

Comments
 (0)