mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +00:00
Update AppState.swift
Fix the issue where entering an email address with capital letters causes the login to fail.
This commit is contained in:
parent
17f3d365b8
commit
a61338804c
1 changed files with 1 additions and 1 deletions
|
|
@ -277,7 +277,7 @@ class AppState: ObservableObject {
|
|||
|
||||
func signIn(username: String, password: String) {
|
||||
authError = nil
|
||||
signIn(username: username, password: password)
|
||||
signIn(username: username.lowercased(), password: password)
|
||||
.sink(
|
||||
receiveCompletion: { _ in },
|
||||
receiveValue: { _ in }
|
||||
|
|
|
|||
Loading…
Reference in a new issue