Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ackava committed Dec 17, 2024
1 parent 63b019d commit 1cf47bd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion umd/src/System.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,10 @@ class System {

const set = setters[index++];

const setP = this.import(iterator).then(set);
const setP = this.import(iterator).then((x) => {
set(x);
return x;
});

if (iterator.isDependentOn(module)) {
isCircularDependency = true;
Expand Down

0 comments on commit 1cf47bd

Please sign in to comment.