aboutsummaryrefslogtreecommitdiff
path: root/src/stores
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores')
-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 2edc31cb..c931592c 100644
--- a/src/stores/settings.ts
+++ b/src/stores/settings.ts
@@ -13,6 +13,7 @@ interface Settings {
forceLightTheme: boolean;
linkToAniList: boolean;
showCompletedAnime: boolean;
+ includePausedMedia: boolean;
}
const defaultSettings: Settings = {
@@ -26,7 +27,8 @@ const defaultSettings: Settings = {
sortByDifference: false,
forceLightTheme: false,
linkToAniList: true,
- showCompletedAnime: true
+ showCompletedAnime: true,
+ includePausedMedia: true
};
const createStore = () => {