Use two second verifier tutorial timing

This commit is contained in:
lemon
2026-06-12 21:09:54 -07:00
parent f58128ede0
commit 3e1de5bf4f
@@ -34,8 +34,8 @@ const NEXT_PHASE: Record<Phase, Phase> = {
};
const PHASE_DELAY: Record<Phase, number> = {
idle: 1250,
menuOpen: 1250,
idle: 2000,
menuOpen: 2000,
verified: 1200,
};
@@ -79,8 +79,8 @@ export function VerifyTutorial({
const [phase, setPhase] = useState<Phase>('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]);