diff options
Diffstat (limited to 'src/stores')
| -rw-r--r-- | src/stores/settings.ts | 2 |
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, |