We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc20043 commit e3b72a7Copy full SHA for e3b72a7
packages/kolibri/utils/i18n.js
@@ -255,10 +255,7 @@ export function i18nSetup(skipPolyfill = false) {
255
if (Object.prototype.hasOwnProperty.call(global, 'Intl') || skipPolyfill) {
256
_setUpVueIntl().then(resolve, reject);
257
} else {
258
- Promise.all([
259
- import('intl'),
260
- importIntlLocale(currentLanguage),
261
- ]).then(
+ Promise.all([import('intl'), importIntlLocale(currentLanguage)]).then(
262
// eslint-disable-line
263
([intlModule, intlLocaleModule]) => {
264
// import() returns the module directly
0 commit comments