Skip to content

Commit

Permalink
fix broken profile link
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinreber committed Nov 18, 2024
1 parent 2600028 commit 022d9fa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/pages/SetDetailsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ const SetDetailsAccessor = () => {
<div className="font-semibold">Created At</div>
<div className="text-sm text-zinc-300">
{convertUtcDateToLocalDateString(setCreatedAt)} by{" "}
<a className="font-semibold text-blue-500" href="/">
<a
className="font-semibold text-blue-500"
href={`/profile/${setUser.username}`}
>
{setUser.username}
</a>
</div>
Expand Down

0 comments on commit 022d9fa

Please sign in to comment.