aboutsummaryrefslogtreecommitdiff
path: root/src/stores
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-10-20 16:37:53 -0700
committerFuwn <[email protected]>2023-10-20 16:37:53 -0700
commit68e3b424c838edb07d59e677bc9debd6d5a32fd4 (patch)
tree810386fa71128dea5f50bdb7673207518117eb3e /src/stores
parentfix(settings): round down chapters hint (diff)
downloaddue.moe-68e3b424c838edb07d59e677bc9debd6d5a32fd4.tar.xz
due.moe-68e3b424c838edb07d59e677bc9debd6d5a32fd4.zip
feat(settings): change to checkbox
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 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 = () => {