diff --git a/apps/web/context/form-state.tsx b/apps/web/context/form-state.tsx index dbba47c..db884ee 100644 --- a/apps/web/context/form-state.tsx +++ b/apps/web/context/form-state.tsx @@ -20,6 +20,7 @@ const reducer = (state: State, action: Action): State => { if (action.payload.step) return { ...state, + error: undefined, step: action.payload.step, user: action.payload.user || state.user, };