commit 69ccc214a6b071c5ede6eac1c22584771fcfe052
parent 1615671dfbe0a9250be8745511f2d12457747342
Author: William Casarin <jb55@jb55.com>
Date: Mon, 19 Dec 2022 22:04:57 -0800
relay: disable autocorrection
Changelog-Fixed: Disable autocorrection on add relay field
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/damus/Views/AddRelayView.swift b/damus/Views/AddRelayView.swift
@@ -18,6 +18,7 @@ struct AddRelayView: View {
Form {
Section("Add Relay") {
TextField("wss://some.relay.com", text: $relay)
+ .autocorrectionDisabled(true)
.textInputAutocapitalization(.never)
}
}