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]);