This commit is contained in:
MartinBraquet
2026-03-02 15:58:39 +01:00
parent aa7e32cb77
commit ab439bd85d
2 changed files with 2 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ function OnboardingScreen({
if (welcomeTitle) {
const timer = setTimeout(() => {
setShowWelcome(false)
}, 3000)
}, 2000)
return () => clearTimeout(timer)
}
}, [welcomeTitle])

View File

@@ -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)