diff --git a/ui/src/routes/+layout.svelte b/ui/src/routes/+layout.svelte index 991080a..c684f8c 100644 --- a/ui/src/routes/+layout.svelte +++ b/ui/src/routes/+layout.svelte @@ -916,46 +916,6 @@ - - - {audioStore.speed}× - - - - (audioStore.autoNext = !audioStore.autoNext)} - class={cn( - 'relative p-1.5 rounded flex-shrink-0 transition-colors', - audioStore.autoNext - ? 'text-(--color-brand) bg-(--color-brand)/15 hover:bg-(--color-brand)/25' - : 'text-(--color-muted) hover:text-(--color-text) hover:bg-(--color-surface-2)' - )} - title={audioStore.autoNext - ? audioStore.nextStatus === 'prefetched' - ? m.player_auto_next_ready({ n: String(audioStore.nextChapter) }) - : audioStore.nextStatus === 'prefetching' - ? m.player_auto_next_preparing({ n: String(audioStore.nextChapter) }) - : m.player_auto_next_on() - : m.player_auto_next_off()} - aria-label={m.player_auto_next_aria({ state: audioStore.autoNext ? m.common_on() : m.common_off() })} - aria-pressed={audioStore.autoNext} - > - - - - - - {#if audioStore.autoNext && audioStore.nextStatus === 'prefetching'} - - {:else if audioStore.autoNext && audioStore.nextStatus === 'prefetched'} - - {/if} - {:else if audioStore.status === 'generating'}