audio streaming app plyr.fm
38
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: add live theme to ProfileMenu quick settings (#1135)

The live theme button was missing from the mobile menu's quick settings
panel — the themes array only had dark/light/auto.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

authored by

nate nowack
Claude Opus 4.6
and committed by
GitHub
88a359fe 551a1665

+2 -1
+2 -1
frontend/src/lib/components/ProfileMenu.svelte
··· 39 39 const themes: { value: Theme; label: string; icon: string }[] = [ 40 40 { value: 'dark', label: 'dark', icon: 'moon' }, 41 41 { value: 'light', label: 'light', icon: 'sun' }, 42 - { value: 'system', label: 'auto', icon: 'auto' } 42 + { value: 'system', label: 'auto', icon: 'auto' }, 43 + { value: 'live', label: 'live', icon: 'live' } 43 44 ]; 44 45 45 46 let currentColor = $derived(preferences.accentColor ?? '#6a9fff');