@@ -20,7 +20,7 @@ public struct SignedInView {
2020 @Environment ( AuthService . self) private var authService
2121 @State private var showDeleteConfirmation = false
2222 @State private var showEmailVerificationSent = false
23-
23+
2424 private func sendEmailVerification( ) async {
2525 do {
2626 try await authService. sendEmailVerification ( )
@@ -75,7 +75,7 @@ extension SignedInView: View {
7575 . padding ( [ . top, . bottom] , 8 )
7676 . frame ( maxWidth: . infinity)
7777 . accessibilityIdentifier ( " update-password-button " )
78-
78+
7979 Button {
8080 authService. navigator. push ( . mfaManagement)
8181 } label: {
@@ -87,7 +87,7 @@ extension SignedInView: View {
8787 . padding ( [ . top, . bottom] , 8 )
8888 . frame ( maxWidth: . infinity)
8989 . accessibilityIdentifier ( " mfa-management-button " )
90-
90+
9191 Button {
9292 showDeleteConfirmation = true
9393 } label: {
@@ -99,7 +99,7 @@ extension SignedInView: View {
9999 . padding ( [ . top, . bottom] , 8 )
100100 . frame ( maxWidth: . infinity)
101101 . accessibilityIdentifier ( " delete-account-button " )
102-
102+
103103 Button {
104104 Task {
105105 try ? await authService. signOut ( )
0 commit comments