diff options
| author | Fuwn <[email protected]> | 2023-12-05 14:57:45 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-05 14:57:45 -0800 |
| commit | 13fc063eef72bf5bb8c5e4fdbe28bae188189fcc (patch) | |
| tree | 98300ca00804781ae1fb27d935ec07bc44e699ff /src/stores | |
| parent | fix(html): header fouc (diff) | |
| download | due.moe-13fc063eef72bf5bb8c5e4fdbe28bae188189fcc.tar.xz due.moe-13fc063eef72bf5bb8c5e4fdbe28bae188189fcc.zip | |
feat(layout): mai
Diffstat (limited to 'src/stores')
| -rw-r--r-- | src/stores/settings.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts index a194f6c3..28f55f32 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -22,6 +22,7 @@ export interface Settings { disableOutOfDateVolumeWarning: boolean; displayPlannedAnime: boolean; displayFurigana: boolean; + displayMai: boolean; } const defaultSettings: Settings = { @@ -44,7 +45,8 @@ const defaultSettings: Settings = { guessMethod: 'median', disableOutOfDateVolumeWarning: false, displayPlannedAnime: true, - displayFurigana: false + displayFurigana: false, + displayMai: true }; const createStore = () => { |