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 4dcd0a5 commit 7c0d456Copy full SHA for 7c0d456
src/core/init.js
@@ -44,6 +44,6 @@ const waitForDocumentReady = () =>
44
45
// only load translations if we're using the full, un-minified library
46
const waitingForTranslator =
47
- typeof IS_MINIFIED === undefined ? initTranslator() : Promise.resolve();
+ typeof IS_MINIFIED === 'undefined' ? initTranslator() : Promise.resolve();
48
49
Promise.all([waitForDocumentReady(), waitingForTranslator]).then(_globalInit);
0 commit comments