Skip to content

Commit 3385578

Browse files
committed
linting
1 parent f974b40 commit 3385578

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/dev/core/src/Engines/shaderStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export class ShaderStore {
9191
while (ShaderStore._PendingIncludesLoaders.length > 0) {
9292
const loaders = ShaderStore._PendingIncludesLoaders.splice(0);
9393
// eslint-disable-next-line no-await-in-loop
94-
await Promise.all(loaders.map((fn) => fn()));
94+
await Promise.all(loaders.map(async (fn) => await fn()));
9595
}
9696
});
9797
}

0 commit comments

Comments
 (0)