diff --git a/Sources/ComposableArchitecture/Observation/Binding+Observation.swift b/Sources/ComposableArchitecture/Observation/Binding+Observation.swift index d58748375767..78b88aea103b 100644 --- a/Sources/ComposableArchitecture/Observation/Binding+Observation.swift +++ b/Sources/ComposableArchitecture/Observation/Binding+Observation.swift @@ -223,14 +223,14 @@ } } - extension Case where Value: BindableAction, Value.State: ObservableState { - public subscript( - dynamicMember keyPath: WritableKeyPath - ) -> Case { - Case( - embed: { self.embed(.binding(.set(keyPath, $0))) }, - extract: { self.extract(from: $0)?.binding?.value.base as? Member } - ) - } - } +// extension Case where Value: BindableAction, Value.State: ObservableState { +// public subscript( +// dynamicMember keyPath: WritableKeyPath +// ) -> Case { +// Case( +// embed: { self.embed(.binding(.set(keyPath, $0))) }, +// extract: { self.extract(from: $0)?.binding?.value.base as? Member } +// ) +// } +// } #endif