Fixed a link error (again)

This commit is contained in:
tdgmdev 2023-03-06 16:57:17 -05:00
parent b032a7a241
commit 3448277220
2 changed files with 3 additions and 3 deletions

View file

@ -73,14 +73,14 @@
<h2>Following</h2>
{#each following as user}
<a class='follower' href='/user/{user.following}'>
<a class='follower' href='/users/{user.following}'>
<img class='pfp' src='/pfp/{user.following}.png'/>
</a>
{/each}
<h2>Followers</h2>
{#each followers as user}
<a class='follower' href='/user/{user.username}'>
<a class='follower' href='/users/{user.username}'>
<img class='pfp' src='/pfp/{user.username}.png'/>
</a>
{/each}