Skip to content

Commit c5070c9

Browse files
authored
Fix DynamicPreferenceCombiner returning early (#659)
1 parent a30da78 commit c5070c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/OpenSwiftUICore/Layout/Dynamic/DynamicContainer.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ private struct DynamicPreferenceCombiner<K>: Rule, AsyncAttribute, CustomStringC
258258
}
259259
let item = info.items[itemIndex]
260260
guard let attribute = item.outputs[K.self] else {
261-
return value
261+
continue
262262
}
263263
if initialValue {
264264
value = attribute.value

0 commit comments

Comments
 (0)