Minor fix to sub management

This commit is contained in:
WardPearce
2024-05-13 14:33:40 +12:00
parent 1db7e37dbb
commit 116ce3cb82
@@ -48,11 +48,12 @@
{#each subscriptions as sub}
<article>
<nav>
<a href={`/channel/${sub.authorId}`} style="flex: 1;"
<a href={`/channel/${sub.authorId}`}
><h6>
{sub.author}
</h6></a
>
<div class="max"></div>
<button on:click={async () => unsubscribe(sub.authorId)} class="border">Unsubscribe</button>
</nav>
</article>