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)