Skip to content

Commit 71d2f5f

Browse files
committed
Fix FunctionalLocation recursive compare
1 parent ab02ac4 commit 71d2f5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/OpenSwiftUICore/Data/Binding/Location.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ package struct FunctionalLocation<Value>: Location {
363363
}
364364

365365
package static func == (lhs: FunctionalLocation<Value>, rhs: FunctionalLocation<Value>) -> Bool {
366-
compareValues(lhs, rhs)
366+
compareValues(lhs.functions, rhs.functions)
367367
}
368368
}
369369

0 commit comments

Comments
 (0)