aboutsummaryrefslogtreecommitdiff
path: root/src/stores/settings.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/settings.ts')
-rw-r--r--src/stores/settings.ts8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts
index 0c9742ee..5ffae4f5 100644
--- a/src/stores/settings.ts
+++ b/src/stores/settings.ts
@@ -11,10 +11,11 @@ export interface Settings {
roundDownChapters: boolean;
sortByDifference: boolean;
forceLightTheme: boolean;
- linkToAniList: boolean;
+ linkToLiveChart: boolean;
displayPausedMedia: boolean;
limitListHeight: boolean;
displaySocialButton: boolean;
+ disableGuessing: boolean;
}
const defaultSettings: Settings = {
@@ -27,10 +28,11 @@ const defaultSettings: Settings = {
roundDownChapters: true,
sortByDifference: false,
forceLightTheme: false,
- linkToAniList: true,
+ linkToLiveChart: true,
displayPausedMedia: true,
limitListHeight: false,
- displaySocialButton: false
+ displaySocialButton: false,
+ disableGuessing: false
};
const createStore = () => {