From f6329bbe3b1fa13a4346aa8284ee9b902bfe7182 Mon Sep 17 00:00:00 2001 From: ramirez Date: Thu, 5 Mar 2026 18:34:49 +0900 Subject: [PATCH] Revert "fix: auto-submit OTP code on completion in get-started verification step" This reverts commit 9754c73b64ef04f732c66bbabb59e1535b568ad5. --- .../components/GetStartedForm/steps/VerificationStep.tsx | 5 ----- 1 file changed, 5 deletions(-) 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() {