Skip to content

Commit

Permalink
[web] fix broken link to challenge in profile
Browse files Browse the repository at this point in the history
  • Loading branch information
PhantomKnight287 committed May 7, 2024
1 parent c7b5594 commit 9dd18a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/app/[username]/challenges/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ async function Challenges({ params }: { params: { username: string } }) {
<TableRow key={challenge.id} className="not-in-markdown">
<TableCell className="font-medium not-in-markdown">
<Link
href={`/track/${challenge.track!.slug}/challenge/${
href={`/tracks/${challenge.track!.slug}/challenge/${
challenge.slug
}`}
className="hover:underline"
Expand Down

0 comments on commit 9dd18a5

Please sign in to comment.