Skip to content

Commit

Permalink
fix: support IE 11 without polyfill (#416)
Browse files Browse the repository at this point in the history
Fixes #397
  • Loading branch information
Haroenv authored and gregberge committed Aug 28, 2019
1 parent 0aa67b7 commit 80ee809
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/component/src/loadableReady.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default function loadableReady(
function checkReadyState() {
if (
requiredChunks.every(chunk =>
loadedChunks.some(([chunks]) => chunks.includes(chunk)),
loadedChunks.some(([chunks]) => chunks.indexOf(chunk) > -1),
)
) {
if (!resolved) {
Expand Down

0 comments on commit 80ee809

Please sign in to comment.