diff options
| author | Fuwn <[email protected]> | 2023-09-05 23:55:06 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-05 23:55:06 -0700 |
| commit | 247d33f6df4e61d807c7543036a2518fc90fca77 (patch) | |
| tree | 2a944f5afe89067ad5b7c42b2e9faee79bff58f3 /src/stores/settings.ts | |
| parent | feat(anime): optionally link to livechart.me (diff) | |
| download | due.moe-247d33f6df4e61d807c7543036a2518fc90fca77.tar.xz due.moe-247d33f6df4e61d807c7543036a2518fc90fca77.zip | |
feat: show completed anime section
Diffstat (limited to 'src/stores/settings.ts')
| -rw-r--r-- | src/stores/settings.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts index 01580ec3..2edc31cb 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -12,6 +12,7 @@ interface Settings { sortByDifference: boolean; forceLightTheme: boolean; linkToAniList: boolean; + showCompletedAnime: boolean; } const defaultSettings: Settings = { @@ -24,7 +25,8 @@ const defaultSettings: Settings = { roundDownChapters: true, sortByDifference: false, forceLightTheme: false, - linkToAniList: true + linkToAniList: true, + showCompletedAnime: true }; const createStore = () => { |