Skip to content

Commit

Permalink
fix: now see it now link on feed when logged in goes to the user's de…
Browse files Browse the repository at this point in the history
…v card (#3954)
  • Loading branch information
nickytonline authored Aug 15, 2024
1 parent dc863f7 commit cd3d5b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/feed/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ export default function Feeds(props: HighlightSSRProps) {
"Discover your open source impact with the OSCR - Open Source Contributor Rating. Visit your profile to view your personalized DevCard, showcasing your influence and impact on the open source ecosystem. Check out your OSCR DevCard and share it today!"
}
bannerSrc={"/assets/images/anouncement-cards/OSCR-devcard.png"}
url={`/u/${loggedInUser?.name ? loggedInUser.name + "/card" : "bdougie/card"}`}
url={`/u/${loggedInUser?.login ? loggedInUser.login + "/card" : "bdougie/card"}`}
cta={"See It Now!"}
/>
</div>
Expand Down

0 comments on commit cd3d5b2

Please sign in to comment.