diff --git a/IceCubesApp/App/Tabs/Settings/AddAccountsView.swift b/IceCubesApp/App/Tabs/Settings/AddAccountsView.swift index 062b0b1b..fb884f34 100644 --- a/IceCubesApp/App/Tabs/Settings/AddAccountsView.swift +++ b/IceCubesApp/App/Tabs/Settings/AddAccountsView.swift @@ -24,8 +24,11 @@ struct AddAccountView: View { var body: some View { NavigationStack { Form { - TextField("Instance url", text: $instanceName) + TextField("Instance URL", text: $instanceName) .listRowBackground(theme.primaryBackgroundColor) + .keyboardType(.URL) + .textContentType(.URL) + .textInputAutocapitalization(.never) if let instance { Button { isSigninIn = true