diff --git a/ShhShell/Views/Misc/TextBox.swift b/ShhShell/Views/Misc/TextBox.swift index d4acec9..0f242bf 100644 --- a/ShhShell/Views/Misc/TextBox.swift +++ b/ShhShell/Views/Misc/TextBox.swift @@ -24,6 +24,7 @@ struct TextBox: View { TextField("", text: $text, prompt: Text(prompt)) .multilineTextAlignment(.trailing) .disableAutocorrection(true) + .textInputAutocapitalization(.never) } } }