Add logout

This commit is contained in:
@s.roertgen 2025-04-15 15:21:09 +02:00
parent 08ad305cc2
commit 1f3234b799
4 changed files with 11 additions and 8 deletions

View file

@ -35,7 +35,7 @@
{#if $boards.length > 0}
<h1 class="mx-auto text-lg">Alle Boards</h1>
<div class="flex flex-wrap justify-start gap-2">
<div class="flex grid grid-flow-col grid-rows-2 overflow-y-auto">
{#if $user}
{#each $boards.filter((e) => e.pubkey !== $user.pubkey) as board (board.id)}
<BoardCard {board} />