config: don't add relay even if we've cancelled
Changelog-Fixed: Cancel button on add relay view Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
@@ -102,8 +102,13 @@ struct ConfigView: View {
|
|||||||
Text("Make sure your nsec account key is saved before you logout or you will lose access to this account")
|
Text("Make sure your nsec account key is saved before you logout or you will lose access to this account")
|
||||||
}
|
}
|
||||||
.sheet(isPresented: $show_add_relay) {
|
.sheet(isPresented: $show_add_relay) {
|
||||||
AddRelayView(show_add_relay: $show_add_relay, relay: $new_relay) { _ in
|
AddRelayView(show_add_relay: $show_add_relay, relay: $new_relay) { m_relay in
|
||||||
guard let url = URL(string: new_relay) else {
|
|
||||||
|
guard let relay = m_relay else {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
guard let url = URL(string: relay) else {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user