Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: now see it now link on feed when logged in goes to the user's dev card #3954

Merged
merged 2 commits into from
Aug 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading