* successfull -> successful

* Fix backtick
This commit is contained in:
Oliver 2023-07-22 22:54:01 +10:00 committed by GitHub
parent f227315ad1
commit 4e0f22aa00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -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: <IconCheck size="1rem" />
@ -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: <IconCheck size="1rem" />,

View File

@ -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: <IconCheck size="1rem" />
@ -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