diff --git a/apps/portal/src/features/get-started/components/GetStartedForm/steps/VerificationStep.tsx b/apps/portal/src/features/get-started/components/GetStartedForm/steps/VerificationStep.tsx index ef7df58c..9cbd1224 100644 --- a/apps/portal/src/features/get-started/components/GetStartedForm/steps/VerificationStep.tsx +++ b/apps/portal/src/features/get-started/components/GetStartedForm/steps/VerificationStep.tsx @@ -24,6 +24,10 @@ export function VerificationStep() { setCode(value); }; + const handleCodeComplete = (value: string) => { + send({ type: "VERIFY_CODE", code: value }); + }; + const handleVerify = () => { if (code.length === 6) { send({ type: "VERIFY_CODE", code }); @@ -53,6 +57,7 @@ export function VerificationStep() {