Fix build

This commit is contained in:
garronej
2022-08-01 03:07:06 +02:00
parent a27c28c24f
commit de76d06e48
3 changed files with 8 additions and 6 deletions

View File

@ -32,7 +32,7 @@ const KcApp = memo(({ kcContext, i18n: userProvidedI18n, ...props }: { kcContext
return userProvidedI18n ?? i18n;
})();
if (i18n === undefined) {
if (i18n === null) {
return null;
}