diff options
| author | Fuwn <[email protected]> | 2023-09-05 21:36:05 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-05 21:38:36 -0700 |
| commit | 59f73659d2cfeb8621cae7aefda0079c585d01f5 (patch) | |
| tree | 5d46c724525256b7c1871d0b3907e7dc52a8df62 /src/stores | |
| parent | feat(home): response columns (diff) | |
| download | due.moe-59f73659d2cfeb8621cae7aefda0079c585d01f5.tar.xz due.moe-59f73659d2cfeb8621cae7aefda0079c585d01f5.zip | |
feat(anime): optionally link to livechart.me
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 c802e8b2..01580ec3 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -11,6 +11,7 @@ interface Settings { roundDownChapters: boolean; sortByDifference: boolean; forceLightTheme: boolean; + linkToAniList: boolean; } const defaultSettings: Settings = { @@ -22,7 +23,8 @@ const defaultSettings: Settings = { displayUnresolved: false, roundDownChapters: true, sortByDifference: false, - forceLightTheme: false + forceLightTheme: false, + linkToAniList: true }; const createStore = () => { |