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 && (