We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d76f9fc commit fb92bc8Copy full SHA for fb92bc8
1 file changed
FirebaseSwiftUI/FirebaseAuthSwiftUI/Sources/Views/PasswordRecoveryView.swift
@@ -19,7 +19,6 @@ import SwiftUI
19
@MainActor
20
public struct PasswordRecoveryView {
21
@Environment(AuthService.self) private var authService
22
- @Environment(\.reportError) private var reportError
23
@State private var email = ""
24
@State private var showSuccessSheet = false
25
@State private var sentEmail = ""
@@ -32,7 +31,7 @@ public struct PasswordRecoveryView {
32
31
sentEmail = email
33
showSuccessSheet = true
34
} catch {
35
- reportError?(error)
+ // Error already displayed via modal by AuthService
36
}
37
38
0 commit comments