aboutsummaryrefslogtreecommitdiff
path: root/src/stores
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-10-14 17:25:58 -0700
committerFuwn <[email protected]>2023-10-14 17:25:58 -0700
commitba74785d0129a092e1b472543350d00be20d3ee3 (patch)
tree4188b3efca0cabc3129d6bc036c999d14378e99b /src/stores
parentfix(completed): limit list height (diff)
downloaddue.moe-ba74785d0129a092e1b472543350d00be20d3ee3.tar.xz
due.moe-ba74785d0129a092e1b472543350d00be20d3ee3.zip
feat(anime): social button
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 8765390e..0c9742ee 100644
--- a/src/stores/settings.ts
+++ b/src/stores/settings.ts
@@ -14,6 +14,7 @@ export interface Settings {
linkToAniList: boolean;
displayPausedMedia: boolean;
limitListHeight: boolean;
+ displaySocialButton: boolean;
}
const defaultSettings: Settings = {
@@ -28,7 +29,8 @@ const defaultSettings: Settings = {
forceLightTheme: false,
linkToAniList: true,
displayPausedMedia: true,
- limitListHeight: false
+ limitListHeight: false,
+ displaySocialButton: false
};
const createStore = () => {