diff options
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 = () => { |