Skip to content

Commit

Permalink
fix error algo not found in add pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
zivglik authored and RonShvarz committed Nov 29, 2023
1 parent 04957b8 commit 2c26da5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/hooks/useWizard.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ const useWizard = (
);

const setForm = useCallback(() => {
setValuesState(getFormattedFormValues());
setTimeout(() => {
setValuesState(getFormattedFormValues());
}, 100);
}, [getFormattedFormValues, setValuesState]);

return {
Expand Down

0 comments on commit 2c26da5

Please sign in to comment.