From a4675246b2f12d6645bee4d7807e3530c0e6a574 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Thu, 15 Jan 2026 19:52:01 +0100 Subject: [PATCH] Wait for 5 sec after profile creation --- web/components/optional-profile-form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/optional-profile-form.tsx b/web/components/optional-profile-form.tsx index 713b6528..47000ee0 100644 --- a/web/components/optional-profile-form.tsx +++ b/web/components/optional-profile-form.tsx @@ -146,7 +146,7 @@ export const OptionalProfileUserForm = (props: { i++ } if (profile) { - await sleep(1000) + await sleep(5000) router.push(`/${user.username}${fromSignup ? '?fromSignup=true' : ''}`) } else { console.log("Profile not found after fetching, going back home...")