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 2c2f4a8 commit a059c83Copy full SHA for a059c83
packages/webpack-bundler-runtime/src/getSharedFallbackGetter.ts
@@ -44,9 +44,12 @@ export const getSharedFallbackGetter = ({
44
`Failed to load fallback entry for shareKey: ${shareKey} and version: ${version}`,
45
);
46
}
47
- //@ts-expect-error shareEntry.init expect instance and bundlerRuntime
48
- return shareEntry
49
- .init(instance, bundlerRuntime)
50
- .then(() => shareEntry.get());
+ return (
+ shareEntry
+ //@ts-expect-error shareEntry.init expect instance and bundlerRuntime
+ .init(instance, bundlerRuntime)
51
52
+ .then(() => shareEntry.get())
53
+ );
54
});
55
};
0 commit comments