We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d75816 commit bb34c52Copy full SHA for bb34c52
FirebaseSwiftUI/FirebaseAuthSwiftUI/Sources/Views/AuthPickerView.swift
@@ -50,13 +50,20 @@ extension AuthPickerView: View {
50
VStack {
51
authPickerTitleView
52
if authService.authenticationState == .authenticated {
53
- SignedInView()
+ switch authService.authView {
54
+ case .mfaEnrollment:
55
+ MFAEnrolmentView()
56
+ default:
57
+ SignedInView()
58
+ }
59
} else {
60
switch authService.authView {
61
case .passwordRecovery:
62
PasswordRecoveryView()
63
case .emailLink:
64
EmailLinkView()
65
66
67
case .authPicker:
68
if authService.emailSignInEnabled {
69
Text(authService.authenticationFlow == .signIn ? authService.string
0 commit comments