Remove password req.

This commit is contained in:
Aiden Vigue 2021-05-21 21:51:24 -04:00
parent 6c35ab8b19
commit 382fdc030a
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ struct ConnectToServerView: View {
Spacer()
ProgressView().isHidden(!isWorking)
}
}.disabled(isWorking || username.isEmpty || password.isEmpty)
}.disabled(isWorking || username.isEmpty)
.alert(isPresented: $isSignInErrored) {
Alert(title: Text("Error"), message: Text("Invalid credentials"), dismissButton: .default(Text("Back")))
}