Fix "your" word duplicated (#5335)

This commit is contained in:
Ulices 2023-07-24 16:02:40 -06:00 committed by GitHub
parent 13b9b57698
commit c3cdb9cd7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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'
});
}

View File

@ -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'
});
}