remove analytics

This commit is contained in:
Kentai Radiquum 2025-05-29 15:12:53 +05:00
parent c2fc453406
commit 88064f05c4
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
6 changed files with 1 additions and 48 deletions

View file

@ -9,7 +9,6 @@ interface preferencesState {
// saveSearchHistory: boolean;
saveWatchHistory?: boolean;
showChangelog?: boolean;
enableAnalytics?: boolean;
showNavbarTitles?: "always" | "links" | "selected" | "never";
showFifthButton?: null | 3 | 4 | 5;
};
@ -43,7 +42,6 @@ export const usePreferencesStore = create<preferencesState>()(
// saveSearchHistory: true,
saveWatchHistory: true,
showChangelog: true,
enableAnalytics: true,
showNavbarTitles: "always",
showFifthButton: null,
},