From 49d9bb99bcefe452cffb4dbcb25f1ed7e9630c1c Mon Sep 17 00:00:00 2001 From: Carlos Monastyrski Date: Tue, 23 Sep 2025 17:44:23 -0300 Subject: [PATCH] Improve wording on toast message --- frontend/src/components/auth/Mfa.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/auth/Mfa.tsx b/frontend/src/components/auth/Mfa.tsx index 02ca0a5ad..efc33d52b 100644 --- a/frontend/src/components/auth/Mfa.tsx +++ b/frontend/src/components/auth/Mfa.tsx @@ -123,7 +123,7 @@ export const Mfa = ({ successCallback, closeMfa, hideLogo, email, method }: Prop setTriesLeft(newTriesLeft); if (newTriesLeft <= 0) { createNotification({ - text: "User is temporary locked due to multiple failed login attempts. Try again after 5 minutes. You can also reset your password now to proceed.", + text: "User is temporary locked due to multiple failed login attempts. Try again later. You can also reset your password now to proceed.", type: "error" }); setIsLoading(false);