Quellcode durchsuchen

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

sw vor 4 Wochen
Ursprung
Commit
7d864e1242
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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;