From c3cdb9cd7eac04427eda9e61214031a294970575 Mon Sep 17 00:00:00 2001 From: Ulices Date: Mon, 24 Jul 2023 16:02:40 -0600 Subject: [PATCH] Fix "your" word duplicated (#5335) --- src/frontend/src/components/forms/AuthenticationForm.tsx | 4 ++-- src/frontend/src/functions/auth.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/frontend/src/components/forms/AuthenticationForm.tsx b/src/frontend/src/components/forms/AuthenticationForm.tsx index 3784f5ba80..7bedd2e012 100644 --- a/src/frontend/src/components/forms/AuthenticationForm.tsx +++ b/src/frontend/src/components/forms/AuthenticationForm.tsx @@ -34,7 +34,7 @@ export function AuthenticationForm() { if (ret === false) { notifications.show({ title: t`Login failed`, - message: t`Check your your input and try again.`, + message: t`Check your input and try again.`, color: 'red' }); } else { @@ -60,7 +60,7 @@ export function AuthenticationForm() { } else { notifications.show({ title: t`Input error`, - message: t`Check your your input and try again.`, + message: t`Check your input and try again.`, color: 'red' }); } diff --git a/src/frontend/src/functions/auth.tsx b/src/frontend/src/functions/auth.tsx index e3e98823e0..bd92aa2618 100644 --- a/src/frontend/src/functions/auth.tsx +++ b/src/frontend/src/functions/auth.tsx @@ -87,7 +87,7 @@ export function handleReset(navigate: any, values: { email: string }) { } else { notifications.show({ title: t`Reset failed`, - message: t`Check your your input and try again.`, + message: t`Check your input and try again.`, color: 'red' }); }