Fix "your" word duplicated (#5335)

This commit is contained in:
Ulices
2023-07-25 08:02:40 +10:00
committed by GitHub
parent 13b9b57698
commit c3cdb9cd7e
2 changed files with 3 additions and 3 deletions
@@ -34,7 +34,7 @@ export function AuthenticationForm() {
if (ret === false) { if (ret === false) {
notifications.show({ notifications.show({
title: t`Login failed`, title: t`Login failed`,
message: t`Check your your input and try again.`, message: t`Check your input and try again.`,
color: 'red' color: 'red'
}); });
} else { } else {
@@ -60,7 +60,7 @@ export function AuthenticationForm() {
} else { } else {
notifications.show({ notifications.show({
title: t`Input error`, title: t`Input error`,
message: t`Check your your input and try again.`, message: t`Check your input and try again.`,
color: 'red' color: 'red'
}); });
} }
+1 -1
View File
@@ -87,7 +87,7 @@ export function handleReset(navigate: any, values: { email: string }) {
} else { } else {
notifications.show({ notifications.show({
title: t`Reset failed`, title: t`Reset failed`,
message: t`Check your your input and try again.`, message: t`Check your input and try again.`,
color: 'red' color: 'red'
}); });
} }