diff options
| author | Fuwn <[email protected]> | 2023-09-29 17:22:11 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-29 17:22:11 -0700 |
| commit | b1b34615e8154243045b314daf5ace1414e37ac1 (patch) | |
| tree | 4a119c0e26b415e6dba6c1709e373f117d1ea065 /src/stores | |
| parent | refactor(anime): move anime to modules (diff) | |
| download | due.moe-b1b34615e8154243045b314daf5ace1414e37ac1.tar.xz due.moe-b1b34615e8154243045b314daf5ace1414e37ac1.zip | |
fix(settings): remove unused anime setting
Diffstat (limited to 'src/stores')
| -rw-r--r-- | src/stores/settings.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts index aa26d662..8765390e 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -12,7 +12,6 @@ export interface Settings { sortByDifference: boolean; forceLightTheme: boolean; linkToAniList: boolean; - showCompletedAnime: boolean; displayPausedMedia: boolean; limitListHeight: boolean; } @@ -28,7 +27,6 @@ const defaultSettings: Settings = { sortByDifference: false, forceLightTheme: false, linkToAniList: true, - showCompletedAnime: true, displayPausedMedia: true, limitListHeight: false }; |