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 68b1a49 commit 9822d5bCopy full SHA for 9822d5b
1 file changed
packages/dev/core/src/Engines/shaderStore.ts
@@ -91,7 +91,7 @@ export class ShaderStore {
91
while (ShaderStore._PendingIncludesLoaders.length > 0) {
92
const loaders = ShaderStore._PendingIncludesLoaders.splice(0);
93
// eslint-disable-next-line no-await-in-loop
94
- await Promise.all(loaders.map((fn) => fn()));
+ await Promise.all(loaders.map(async (fn) => await fn()));
95
}
96
});
97
0 commit comments