aboutsummaryrefslogtreecommitdiff
path: root/src/stores/settings.ts
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-01-21 00:47:30 -0800
committerFuwn <[email protected]>2024-01-21 00:47:30 -0800
commit9ea039e6907184794c4059e3081aa956a10c5b4b (patch)
tree1fa11345bb5c116cd840dcc2b767ffc037fd52c4 /src/stores/settings.ts
parentfeat(locale): more localisation for display category (diff)
downloaddue.moe-9ea039e6907184794c4059e3081aa956a10c5b4b.tar.xz
due.moe-9ea039e6907184794c4059e3081aa956a10c5b4b.zip
feat: disable last activity warning
Diffstat (limited to 'src/stores/settings.ts')
-rw-r--r--src/stores/settings.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts
index 3a55d5b6..ad922a59 100644
--- a/src/stores/settings.ts
+++ b/src/stores/settings.ts
@@ -37,6 +37,7 @@ export interface Settings {
displayShortCountdown: boolean;
displayScheduleListMode: boolean;
displayLanguage: 'en' | 'ja';
+ displayDisableLastActivityWarning: boolean;
}
const defaultSettings: Settings = {
@@ -70,6 +71,7 @@ const defaultSettings: Settings = {
displayShortCountdown: false,
displayScheduleListMode: false,
displayLanguage: 'en',
+ displayDisableLastActivityWarning: false,
// Calculation
calculateChaptersRoundedDown: true,