diff options
Diffstat (limited to 'src/stores/settings.ts')
| -rw-r--r-- | src/stores/settings.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts index 800c824a..aefbd4ac 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -10,7 +10,7 @@ export interface Settings { displayUnresolved: boolean; roundDownChapters: boolean; sortByDifference: boolean; - linkToLiveChart: boolean; + outboundLinksTo: 'anilist' | 'livechartme' | 'animeschedule' | 'myanimelist'; displayPausedMedia: boolean; limitListHeight: boolean; displaySocialButton: boolean; @@ -26,7 +26,7 @@ export interface Settings { const defaultSettings: Settings = { // Display - linkToLiveChart: false, + outboundLinksTo: 'anilist', displayPausedMedia: true, displayPlannedAnime: true, limitListHeight: false, |