From 68e3b424c838edb07d59e677bc9debd6d5a32fd4 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Fri, 20 Oct 2023 16:37:53 -0700 Subject: feat(settings): change to checkbox --- src/stores/settings.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/stores/settings.ts') diff --git a/src/stores/settings.ts b/src/stores/settings.ts index 0c9742ee..6863ae99 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -15,6 +15,7 @@ export interface Settings { displayPausedMedia: boolean; limitListHeight: boolean; displaySocialButton: boolean; + disableGuessing: boolean; } const defaultSettings: Settings = { @@ -30,7 +31,8 @@ const defaultSettings: Settings = { linkToAniList: true, displayPausedMedia: true, limitListHeight: false, - displaySocialButton: false + displaySocialButton: false, + disableGuessing: false }; const createStore = () => { -- cgit v1.2.3 From 9a9515eb69458c0e28fedc66072eecc25b326a45 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Fri, 20 Oct 2023 18:15:26 -0700 Subject: fix(settings): change livechart mode --- src/stores/settings.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stores/settings.ts') diff --git a/src/stores/settings.ts b/src/stores/settings.ts index 6863ae99..5ffae4f5 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -11,7 +11,7 @@ export interface Settings { roundDownChapters: boolean; sortByDifference: boolean; forceLightTheme: boolean; - linkToAniList: boolean; + linkToLiveChart: boolean; displayPausedMedia: boolean; limitListHeight: boolean; displaySocialButton: boolean; @@ -28,7 +28,7 @@ const defaultSettings: Settings = { roundDownChapters: true, sortByDifference: false, forceLightTheme: false, - linkToAniList: true, + linkToLiveChart: true, displayPausedMedia: true, limitListHeight: false, displaySocialButton: false, -- cgit v1.2.3