diff --git a/Examples/xx-messenger/Sources/ContactLookupFeature/ContactLookupView.swift b/Examples/xx-messenger/Sources/ContactLookupFeature/ContactLookupView.swift index a8bcd339a287e4ee003a37a673f1cc498b68bc99..d4a759d58bdb4986d13764a553b3bf7a525de58d 100644 --- a/Examples/xx-messenger/Sources/ContactLookupFeature/ContactLookupView.swift +++ b/Examples/xx-messenger/Sources/ContactLookupFeature/ContactLookupView.swift @@ -13,10 +13,12 @@ public struct ContactLookupView: View { init(state: ContactLookupState) { id = state.id isLookingUp = state.isLookingUp + failure = state.failure } var id: Data var isLookingUp: Bool + var failure: String? } public var body: some View { @@ -43,6 +45,14 @@ public struct ContactLookupView: View { } header: { Text("Contact ID") } + + if let failure = viewStore.failure { + Section { + Text(failure) + } header: { + Text("Error") + } + } } .navigationTitle("Lookup") }