Skip to content

Commit d36696a

Browse files
committed
Fix GraphHost.continueTransaction
1 parent 7b4928d commit d36696a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Sources/OpenSwiftUICore/Graph/GraphHost.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,9 @@ extension GraphHost {
432432
var host = self
433433
while !host.inTransaction {
434434
guard let parent = host.parentHost else {
435-
Update.enqueueAction(body)
435+
Update.enqueueAction {
436+
self.asyncTransaction { body() }
437+
}
436438
return
437439
}
438440
host = parent

0 commit comments

Comments
 (0)