Skip to content

Commit

Permalink
Hide Gitcoin banner when it ends (#5442)
Browse files Browse the repository at this point in the history
  • Loading branch information
bigint authored Nov 7, 2024
1 parent fcab6b2 commit a0f4bf3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions apps/web/src/components/Explore/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Gitcoin from "@components/Home/Sidebar/Gitcoin";
import WhoToFollow from "@components/Home/Sidebar/WhoToFollow";
import FeedFocusType from "@components/Shared/FeedFocusType";
import Footer from "@components/Shared/Footer";
Expand Down Expand Up @@ -86,7 +85,7 @@ const Explore: NextPage = () => {
</TabGroup>
</GridItemEight>
<GridItemFour>
<Gitcoin />
{/* <Gitcoin /> */}
{currentProfile ? <WhoToFollow /> : null}
<Footer />
</GridItemFour>
Expand Down
3 changes: 1 addition & 2 deletions apps/web/src/components/Home/Sidebar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import type { FC } from "react";
import { memo } from "react";
import { useProfileStore } from "src/store/persisted/useProfileStore";
import EnableLensManager from "./EnableLensManager";
import Gitcoin from "./Gitcoin";
import HeyMembershipNft from "./HeyMembershipNft";
import SetProfile from "./SetProfile";
import StaffPicks from "./StaffPicks";
Expand All @@ -18,7 +17,7 @@ const Sidebar: FC = () => {

return (
<>
<Gitcoin />
{/* <Gitcoin /> */}
{loggedOut && <SignupCard />}
{loggedInWithProfile && IS_MAINNET && <HeyMembershipNft />}
{/* Onboarding steps */}
Expand Down

1 comment on commit a0f4bf3

@vercel
Copy link

@vercel vercel bot commented on a0f4bf3 Nov 7, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

web – ./

web-git-main-heyxyz.vercel.app
web-heyxyz.vercel.app
heyxyz.vercel.app
hey.xyz

Please sign in to comment.