diff --git a/MobileFort/MobileFort/ContentView.swift b/MobileFort/MobileFort/ContentView.swift index 3f5b29a..f4d32de 100644 --- a/MobileFort/MobileFort/ContentView.swift +++ b/MobileFort/MobileFort/ContentView.swift @@ -50,6 +50,8 @@ struct MainView: View { NavigationView { VStack { TextField("Username", text: $username) + .disableAutocorrection(true) + .autocapitalization(.none) NavigationLink(destination: ProfileView(username: username)) { Text("Show Feed") }