Преглед изворни кода

fix(process): resolve issue where all navigation buttons are disabled after exposure and entering processing’

sw пре 4 недеља
родитељ
комит
7d864e1242
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/states/BusinessFlowSlice.ts

+ 1 - 1
src/states/BusinessFlowSlice.ts

@@ -26,7 +26,7 @@ const BusinessFlowSlice = createSlice({
 });
 
 emitter.on('TASK_SUCCESS', () => {
-  store.dispatch(setBusinessFlow('view'));
+  store.dispatch(setBusinessFlow('process'));
 });
 
 export const { setBusinessFlow } = BusinessFlowSlice.actions;