We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90e9741 commit e2795c1Copy full SHA for e2795c1
Sources/ComposableArchitecture/SwiftUI/Binding.swift
@@ -226,6 +226,12 @@ import SwiftUI
226
}
227
228
229
+ extension BindableState: CustomDebugStringConvertible where Value: CustomDebugStringConvertible {
230
+ public var debugDescription: String {
231
+ self.wrappedValue.debugDescription
232
+ }
233
234
+
235
/// An action type that exposes a `binding` case for the purpose of reducing.
236
///
237
/// Used in conjunction with ``BindableState`` to safely eliminate the boilerplate typically
0 commit comments