From ab439bd85d3f35747c2415b3efed724e679fcb60 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Mon, 2 Mar 2026 15:58:39 +0100 Subject: [PATCH] Clean --- web/pages/onboarding/index.tsx | 2 +- web/pages/signup.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/pages/onboarding/index.tsx b/web/pages/onboarding/index.tsx index 31da4e6a..f920632b 100644 --- a/web/pages/onboarding/index.tsx +++ b/web/pages/onboarding/index.tsx @@ -38,7 +38,7 @@ function OnboardingScreen({ if (welcomeTitle) { const timer = setTimeout(() => { setShowWelcome(false) - }, 3000) + }, 2000) return () => clearTimeout(timer) } }, [welcomeTitle]) diff --git a/web/pages/signup.tsx b/web/pages/signup.tsx index 61092555..53461ba4 100644 --- a/web/pages/signup.tsx +++ b/web/pages/signup.tsx @@ -66,7 +66,7 @@ export default function SignupPage() { const [isSubmitting, setIsSubmitting] = useState(false) - // When a profile already exists (e.g. user pressed browser back after submitting), + // When a profile already exists (e.g., when the user pressed browser back after submitting), // lock the username and display name fields so they can't be changed. const [isLocked, setIsLocked] = useState(false)