diff options
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 = () => { |