{#if loading}
Loading...
{:else if allNotifications.length === 0}

No notifications found

{:else}
{#each allNotifications as notification (notification.id)} {/each}
Time Event App Message Status
{new Date(notification.sentAt).toLocaleString()} {eventLabel(notification.event)} {notification.app?.name ?? '—'} {notification.message} {#if notification.readAt} Read {:else} Unread {/if}
Page {currentPage}
{/if}