Skip to content
Snippets Groups Projects

Restore contacts from backup

2 files
+ 21
0
Compare changes
  • Side-by-side
  • Inline

Files

@@ -182,6 +182,10 @@ public let contactReducer = Reducer<ContactState, ContactAction, ContactEnvironm
state.lookup = nil
return .none
case .lookup(.didLookup(let xxContact)):
state.xxContact = xxContact
return .none
case .sendRequestTapped:
if let xxContact = state.xxContact {
state.sendRequest = SendRequestState(contact: xxContact)
Loading