diff --git a/src/frontend/src/components/forms/AuthenticationForm.tsx b/src/frontend/src/components/forms/AuthenticationForm.tsx index 53f9995b40..3784f5ba80 100644 --- a/src/frontend/src/components/forms/AuthenticationForm.tsx +++ b/src/frontend/src/components/forms/AuthenticationForm.tsx @@ -39,7 +39,7 @@ export function AuthenticationForm() { }); } else { notifications.show({ - title: t`Login successfull`, + title: t`Login successful`, message: t`Welcome back!`, color: 'green', icon: @@ -51,7 +51,7 @@ export function AuthenticationForm() { doSimpleLogin(simpleForm.values.email).then((ret) => { if (ret?.status === 'ok') { notifications.show({ - title: t`Mail delivery successfull`, + title: t`Mail delivery successful`, message: t`Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.`, color: 'green', icon: , diff --git a/src/frontend/src/functions/auth.tsx b/src/frontend/src/functions/auth.tsx index 6f4d300d04..b4b48ab086 100644 --- a/src/frontend/src/functions/auth.tsx +++ b/src/frontend/src/functions/auth.tsx @@ -33,7 +33,7 @@ export const doClassicLogout = async () => { setToken(undefined); notifications.show({ - title: t`Logout successfull`, + title: t`Logout successful`, message: t`See you soon.`, color: 'green', icon: @@ -71,7 +71,7 @@ export function handleReset(navigate: any, values: { email: string }) { .then((val) => { if (val.status === 200) { notifications.show({ - title: t`Mail delivery successfull`, + title: t`Mail delivery successful`, message: t`Check your inbox for a reset link. This only works if you have an account. Check in spam too.`, color: 'green', autoClose: false