Skip to content

Commit

Permalink
Fix errors spamming logs when en is set as the current language
Browse files Browse the repository at this point in the history
We hae no en-US, so this will always fail and is absolutely spamming the console logs.
  • Loading branch information
Josh5 committed Feb 19, 2024
1 parent 1259b6c commit 7b096af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/boot/i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ if (configuredLocale === null) {
export default boot(({ app }) => {
const i18n = createI18n({
legacy: false,
locale: 'en-US',
locale: 'en',
fallbackLocale: 'en',
silentTranslationWarn: true,
messages
Expand Down

0 comments on commit 7b096af

Please sign in to comment.