Skip to content

Commit

Permalink
Refactor BootstrapQueue.ts to improve code execution order
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinpalkovic committed Jan 17, 2024
1 parent e94ad41 commit 793cea6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ const processQueue = async () => {
while (queue.length > 0) {
const bootstrappingFn = queue.shift();
if (bootstrappingFn) {
await resetCompiledComponents();
await bootstrappingFn();
await resetCompiledComponents();
}
}

Expand Down

0 comments on commit 793cea6

Please sign in to comment.