From 79e04212817f76c3c5550f890ce4fe869119698b Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sun, 1 Mar 2026 04:20:40 +0100 Subject: [PATCH] Do not wait upon sign up in dev --- web/components/profiles/profiles-home.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/components/profiles/profiles-home.tsx b/web/components/profiles/profiles-home.tsx index 62f67f70..b08c2cf8 100644 --- a/web/components/profiles/profiles-home.tsx +++ b/web/components/profiles/profiles-home.tsx @@ -56,7 +56,7 @@ export function ProfilesHome() { const {bookmarkedSearches, refreshBookmarkedSearches} = useBookmarkedSearches(user?.id) const [isLoadingMore, setIsLoadingMore] = useState(false) const [isReloading, setIsReloading] = useState(false) - const [showBanner, setShowBanner] = useState(true) + const [showSignupBanner, setShowSignupBanner] = useState(true) const [showEarlyBanner, setShowEarlyBanner] = usePersistentLocalState( true, 'profiles-home-show-early-banner', @@ -202,7 +202,7 @@ export function ProfilesHome() { return (
- {showBanner && fromSignup && ( + {showSignupBanner && fromSignup && (
@@ -265,14 +265,14 @@ export function ProfilesHome() {
)} - {showEarlyBanner && ( + {showEarlyBanner && !showSignupBanner && (