feat: add navbar title show options
Some checks failed
V3 Preview Deployment / Deploy-Preview (push) Has been cancelled

This commit is contained in:
Kentai Radiquum 2025-03-17 02:34:06 +05:00
parent fc64b50367
commit 5270c50c7b
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
4 changed files with 62 additions and 15 deletions

View file

@ -10,6 +10,7 @@ interface preferencesState {
saveWatchHistory?: boolean;
showChangelog?: boolean;
enableAnalytics?: boolean;
showNavbarTitles?: "always" | "links" | "selected" | "never";
};
params: {
isFirstLaunch?: boolean;
@ -42,6 +43,7 @@ export const usePreferencesStore = create<preferencesState>()(
saveWatchHistory: true,
showChangelog: true,
enableAnalytics: true,
showNavbarTitles: "always",
},
params: {
isFirstLaunch: true,