mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-30 18:09:40 +05:00
feat: add navbar title show options
Some checks failed
V3 Preview Deployment / Deploy-Preview (push) Has been cancelled
Some checks failed
V3 Preview Deployment / Deploy-Preview (push) Has been cancelled
This commit is contained in:
parent
fc64b50367
commit
5270c50c7b
4 changed files with 62 additions and 15 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue