Skip to content

Commit

Permalink
Add note for inactive users (#1655)
Browse files Browse the repository at this point in the history
Maybe it's helpful to add a message for the "no account for this email
address found" snack bar that inactive account will be deleted.
  • Loading branch information
nilsreichardt authored Jun 9, 2024
1 parent dcf6066 commit ce1974c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ String? handleErrorMessage(String? error, StackTrace s) {
} else if (error.contains("too-many-requests")) {
return "Wir haben alle Anfragen von diesem Gerät aufgrund ungewöhnlicher Aktivitäten blockiert. Versuchen Sie es später noch einmal.";
} else if (error.contains("user-not-found")) {
return "Es wurde kein Nutzer mit dieser E-Mail Adresse gefunden...";
return "Es wurde kein Nutzer mit dieser E-Mail Adresse gefunden... Inaktive Nutzer werden nach 2 Jahren gelöscht.";
} else if (error.contains("network-request-failed")) {
return "Es gab einen Netzwerkfehler, weil keine stabile Internetverbindung besteht.";
} else if (error.contains("weak-password")) {
Expand Down

0 comments on commit ce1974c

Please sign in to comment.