aboutsummaryrefslogtreecommitdiff
path: root/src/stores/settings.ts
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-09-05 23:55:06 -0700
committerFuwn <[email protected]>2023-09-05 23:55:06 -0700
commit247d33f6df4e61d807c7543036a2518fc90fca77 (patch)
tree2a944f5afe89067ad5b7c42b2e9faee79bff58f3 /src/stores/settings.ts
parentfeat(anime): optionally link to livechart.me (diff)
downloaddue.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.ts4
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 = () => {