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 9cbd1224..ef7df58c 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,10 +24,6 @@ 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 }); @@ -57,7 +53,6 @@ export function VerificationStep() {