You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO: - should make this User type once fixed upstream in firebase-ios-sdk. See: https://github.com/firebase/FirebaseUI-iOS/pull/1247#discussion_r2085455355
23
-
publicletuid:String?
44
+
publicletemail:String?
45
+
46
+
/// Human-readable description of the conflict type
47
+
publicvarconflictDescription:String{
48
+
switch conflictType {
49
+
case.accountExistsWithDifferentCredential:
50
+
return"This account is already registered with a different sign-in method."
51
+
case.credentialAlreadyInUse:
52
+
return"This credential is already linked to another account."
53
+
case.emailAlreadyInUse:
54
+
return"This email address is already in use."
55
+
case.anonymousUpgradeConflict:
56
+
return"Cannot link anonymous account to an existing account."
0 commit comments