fix: don't try to load a langauge if there's none provided
This commit is contained in:
parent
ecf679d8e1
commit
210a78be86
1 changed files with 4 additions and 0 deletions
|
@ -30,6 +30,10 @@ const setI18nLanguage = lang => {
|
|||
}
|
||||
|
||||
export const loadLanguageAsync = lang => {
|
||||
if(!lang) {
|
||||
return
|
||||
}
|
||||
|
||||
if (
|
||||
// If the same language
|
||||
i18n.global.locale === lang ||
|
||||
|
|
Loading…
Reference in a new issue