From 9a5f47f9050455ce7bfb7166d9b0e212e55007ae Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Mon, 9 Mar 2026 14:32:00 +0100 Subject: [PATCH] Fix early banner not showing --- web/components/profiles/profiles-home.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/components/profiles/profiles-home.tsx b/web/components/profiles/profiles-home.tsx index b0aedfa7..7caa1d68 100644 --- a/web/components/profiles/profiles-home.tsx +++ b/web/components/profiles/profiles-home.tsx @@ -59,7 +59,7 @@ export function ProfilesHome() { const {bookmarkedSearches, refreshBookmarkedSearches} = useBookmarkedSearches(user?.id) const [isLoadingMore, setIsLoadingMore] = useState(false) const [isReloading, setIsReloading] = useState(false) - const [showSignupBanner, setShowSignupBanner] = useState(true) + const [showSignupBanner, setShowSignupBanner] = useState(fromSignup) const [showEarlyBanner, setShowEarlyBanner] = usePersistentLocalState( true, 'profiles-home-show-early-banner', @@ -207,7 +207,7 @@ export function ProfilesHome() { return (
- {showSignupBanner && fromSignup && ( + {showSignupBanner && (