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 a0fa3a7 commit 2609c22Copy full SHA for 2609c22
Sources/ComposableArchitecture/SwiftUI/Binding.swift
@@ -228,6 +228,12 @@ import SwiftUI
228
// }
229
230
231
+ extension BindableState: CustomDebugStringConvertible where Value: CustomDebugStringConvertible {
232
+ public var debugDescription: String {
233
+ self.wrappedValue.debugDescription
234
+ }
235
236
+
237
/// An action type that exposes a `binding` case for the purpose of reducing.
238
///
239
/// Used in conjunction with ``BindableState`` to safely eliminate the boilerplate typically
0 commit comments