Skip to content

Commit

Permalink
BugFix: i18n Loading Error
Browse files Browse the repository at this point in the history
Fixed wrong i18n path.
  • Loading branch information
OwenSanzas committed Jul 25, 2024
1 parent 03c8049 commit 5a20024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/i18n.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ i18n
if (language === 'en-US') {
return enUsLocale
}
return import(`./i18n/locales/translations/${language}.json`)
return import(`./i18n/locales/source/${language}.json`)
}),
)
.on('failedLoading', (language, namespace, msg) => {
Expand Down

0 comments on commit 5a20024

Please sign in to comment.