This commit is contained in:
Timur Ercan
2023-01-16 16:33:15 +01:00
parent 15d06d8112
commit 7732402fe3
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ export default function Login() {
redirect: false, redirect: false,
}), }),
{ {
loading: "Loggin in...", loading: "Logging in...",
success: "Login successful.", success: "Login successful.",
error: "Could not log in :/", error: "Could not log in :/",
}, },

View File

@ -54,7 +54,7 @@ const userNavigation = [
const res: any = await toast.promise( const res: any = await toast.promise(
signOut({ callbackUrl: "/login" }), signOut({ callbackUrl: "/login" }),
{ {
loading: "Logging out", loading: "Logging out...",
success: "Your are logged out.", success: "Your are logged out.",
error: "Could not log out :/", error: "Could not log out :/",
}, },