diff --git a/WorkflowSwiftUIExperimental/Sources/ObservableValue+Binding.swift b/WorkflowSwiftUIExperimental/Sources/ObservableValue+Binding.swift index 8ae1d6f5..18b79176 100644 --- a/WorkflowSwiftUIExperimental/Sources/ObservableValue+Binding.swift +++ b/WorkflowSwiftUIExperimental/Sources/ObservableValue+Binding.swift @@ -38,8 +38,8 @@ public extension ObservableValue { set { set.rawValue(value)(newValue) } } - private struct HashableWrapper: Hashable { - let rawValue: Value + private struct HashableWrapper: Hashable { + let rawValue: WrappedValue static func == (lhs: Self, rhs: Self) -> Bool { false } func hash(into hasher: inout Hasher) {} }