From 3e1de5bf4fe4baf6657504dbccaba773872061f4 Mon Sep 17 00:00:00 2001 From: lemon Date: Fri, 12 Jun 2026 21:09:54 -0700 Subject: [PATCH] Use two second verifier tutorial timing --- src/components/organizations/VerifyTutorial.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/organizations/VerifyTutorial.tsx b/src/components/organizations/VerifyTutorial.tsx index 7466d9dd..0859be15 100644 --- a/src/components/organizations/VerifyTutorial.tsx +++ b/src/components/organizations/VerifyTutorial.tsx @@ -34,8 +34,8 @@ const NEXT_PHASE: Record = { }; const PHASE_DELAY: Record = { - idle: 1250, - menuOpen: 1250, + idle: 2000, + menuOpen: 2000, verified: 1200, }; @@ -79,8 +79,8 @@ export function VerifyTutorial({ const [phase, setPhase] = useState('idle'); - // Simple visibility loop: start with the card, reveal the menu after 1.25s, - // reveal the badge after another 1.25s, then pause briefly and reset. + // Simple visibility loop: start with the card, reveal the menu after 2s, + // reveal the badge after another 2s, then pause briefly and reset. useEffect(() => { const id = window.setTimeout(() => { setPhase((prev) => NEXT_PHASE[prev]);