Skip to content

Commit

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

0 comments on commit 305c241

Please sign in to comment.