config option for listenbrainz/lastfm links

This commit is contained in:
Kendall Garner
2025-06-07 20:36:41 -07:00
parent 636c227a83
commit 9b79502022
5 changed files with 99 additions and 42 deletions
+4
View File
@@ -227,7 +227,9 @@ export interface SettingsState {
homeFeature: boolean;
homeItems: SortableItem<HomeItem>[];
language: string;
lastFM: boolean;
lastfmApiKey: string;
musicBrainz: boolean;
nativeAspectRatio: boolean;
passwordStore?: string;
playButtonBehavior: Play;
@@ -376,7 +378,9 @@ const initialState: SettingsState = {
homeFeature: true,
homeItems,
language: 'en',
lastFM: true,
lastfmApiKey: '',
musicBrainz: true,
nativeAspectRatio: false,
passwordStore: undefined,
playButtonBehavior: Play.NOW,