We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f974b40 commit 3385578Copy full SHA for 3385578
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