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, 2 insertions, 2 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts
index c931592c..c32a2a2a 100644
--- a/src/stores/settings.ts
+++ b/src/stores/settings.ts
@@ -13,7 +13,7 @@ interface Settings {
forceLightTheme: boolean;
linkToAniList: boolean;
showCompletedAnime: boolean;
- includePausedMedia: boolean;
+ displayPausedMedia: boolean;
}
const defaultSettings: Settings = {
@@ -28,7 +28,7 @@ const defaultSettings: Settings = {
forceLightTheme: false,
linkToAniList: true,
showCompletedAnime: true,
- includePausedMedia: true
+ displayPausedMedia: true
};
const createStore = () => {