Skip to content

Commit f371365

Browse files
committed
Fix error tag
1 parent c05a358 commit f371365

File tree

1 file changed

+2
-2
lines changed
  • FirebaseAuth/Tests/SampleSwift/AuthenticationExample/CustomViews

1 file changed

+2
-2
lines changed

FirebaseAuth/Tests/SampleSwift/AuthenticationExample/CustomViews/LoginView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,9 @@ extension LoginView {
125125
Spacer()
126126
}
127127
.padding()
128-
.alert("Something went wrong.", isPresented: $showingAlert) {
128+
.alert("Error", isPresented: $showingAlert) {
129129
if let error {
130-
Text("Error: " + error.localizedDescription)
130+
Text(error.localizedDescription)
131131
}
132132
Button("OK", role: .cancel) {
133133
showingAlert.toggle()

0 commit comments

Comments
 (0)