diff --git a/src/lib/components/chrome/AuthGate.svelte b/src/lib/components/chrome/AuthGate.svelte index 48f09ae..0e66429 100644 --- a/src/lib/components/chrome/AuthGate.svelte +++ b/src/lib/components/chrome/AuthGate.svelte @@ -1,14 +1,15 @@ -{#if appState.status === 'auth'} +{#if appState.authRequired && !authVerifiedState.value}
+ {:else if authRequired && ringFull} +Waiting for login
+{ringFull ? '' : `Initializing server${dots}`}
{/if} diff --git a/src/lib/components/home/ActivityFeed.svelte b/src/lib/components/home/ActivityFeed.svelte index 3f93596..fb5f72e 100644 --- a/src/lib/components/home/ActivityFeed.svelte +++ b/src/lib/components/home/ActivityFeed.svelte @@ -19,7 +19,7 @@ const entries = $derived( historyState.sessions .filter((s, i, arr) => arr.findIndex(x => x.mangaId === s.mangaId) === i) - .slice(0, 6) + .slice(0, 5) ) diff --git a/src/lib/components/recent/Recent.svelte b/src/lib/components/recent/Recent.svelte index 4666bd2..1560b4f 100644 --- a/src/lib/components/recent/Recent.svelte +++ b/src/lib/components/recent/Recent.svelte @@ -36,7 +36,7 @@ let libraryManga: Manga[] = $state([]) - let ctrl: AbortController | null = null + let ctrl: AbortController | null = null let statusPollTimer: ReturnType