Skip to content

Commit

Permalink
Change default data source setting
Browse files Browse the repository at this point in the history
  • Loading branch information
Tnze committed Oct 4, 2024
1 parent 17edb3b commit 97b5510
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { BetaXivApiRecipeSource, BetaXivapiBase } from '@/components/recipe-mana
export default defineStore('settings', {
state: () => ({
language: 'system',
dataSource: <'local' | "yyyy.games" | 'cafe' | 'xivapi'>(import.meta.env.VITE_BESTCRAFT_TARGET == "tauri" ? 'xivapi' : 'xivapi'),
dataSource: <'local' | "yyyy.games" | 'cafe' | 'xivapi'>(import.meta.env.VITE_BESTCRAFT_TARGET == "tauri" ? 'local' : 'yyyy.games'),
dataSourceLang: <'en' | 'ja' | 'de' | 'fr' | undefined>undefined
}),
getters: {
Expand Down

0 comments on commit 97b5510

Please sign in to comment.