anix/refactor: navbar

This commit is contained in:
Kentai Radiquum 2025-08-25 04:35:32 +05:00
parent 48345244f3
commit 6b84a312f7
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
11 changed files with 332 additions and 374 deletions

View file

@ -10,7 +10,7 @@ interface preferencesState {
saveWatchHistory?: boolean;
showChangelog?: boolean;
showNavbarTitles?: "always" | "links" | "selected" | "never";
showFifthButton?: null | 3 | 4 | 5;
showFifthButton?: null | string;
};
params: {
isFirstLaunch?: boolean;
@ -80,6 +80,7 @@ export const usePreferencesStore = create<preferencesState>()(
persistedState as preferencesState
);
},
}
version: 2,
},
)
);