Skip to content

Commit

Permalink
Merge pull request #30 from kevinreber/fix-profile-broken-link
Browse files Browse the repository at this point in the history
fix broken profile link
  • Loading branch information
kevinreber authored Nov 18, 2024
2 parents 2600028 + 022d9fa commit 1cfe746
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 1cfe746

Please sign in to comment.