File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11export { default as workflowManagerInternalReducer } from './workflowManagerInternal.slice' ;
2- export const prefix = '@@workflowManagerExternal' ;
2+ export const WORFLOW_MANAGER_EXTERNAL_PREFFIX = '@@workflowManagerExternal' ;
Original file line number Diff line number Diff line change 11import { createAction } from '@reduxjs/toolkit' ;
22
3- import { prefix } from '.' ;
3+ import { WORFLOW_MANAGER_EXTERNAL_PREFFIX } from '.' ;
44
55export const createWorkflowAction = (
66 workflowAction : string ,
77 payload : Record < string , unknown > ,
88) => {
9- const actionName = `${ prefix } /${ workflowAction } ` ;
9+ const actionName = `${ WORFLOW_MANAGER_EXTERNAL_PREFFIX } /${ workflowAction } ` ;
1010
1111 return createAction < typeof payload > ( actionName ) ( payload ) ;
1212} ;
You can’t perform that action at this time.
0 commit comments