aboutsummaryrefslogtreecommitdiff
path: root/pages/login.tsx
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-03-21 15:56:14 +0100
committerlonkaars <l.leblansch@gmail.com>2021-03-21 15:56:14 +0100
commit20030d1bf21ff0ce9a0a95885abe88b79a0b4d04 (patch)
treef88021f36931ed150efe76d3954640298b8512e6 /pages/login.tsx
parent8a3e72edfaee62052ba2eb740775f6bb88af9ae1 (diff)
new toast design in code
Diffstat (limited to 'pages/login.tsx')
-rw-r--r--pages/login.tsx12
1 files changed, 9 insertions, 3 deletions
diff --git a/pages/login.tsx b/pages/login.tsx
index e33883f..abfca04 100644
--- a/pages/login.tsx
+++ b/pages/login.tsx
@@ -20,7 +20,9 @@ function submitLogin(event?: FormEvent<HTMLFormElement>, toast?: toastType) {
if ( !formData.email ||
!formData.password ) {
- toast("Vul alsjeblieft alle velden in!", "error", <ReportProblemOutlinedIcon style={{ fontSize: 32 }}/>);
+ toast({ message: "Vul alsjeblieft alle velden in!",
+ type: "error",
+ icon: <ReportProblemOutlinedIcon/>});
return;
}
@@ -33,10 +35,14 @@ function submitLogin(event?: FormEvent<HTMLFormElement>, toast?: toastType) {
.then(() => window.location.pathname = "/")
.catch(error => {
if (error.response.status === 401) {
- toast("Verkeerde gebruikersnaam of wachtwoord!", "error", <VpnKeyIcon style={{ fontSize: 32 }}/>);
+ toast({ message: "Verkeerde gebruikersnaam of wachtwoord!",
+ type: "error",
+ icon: <VpnKeyIcon/>});
return;
}
- toast("Er is iets fout gegaan", "error", <ErrorOutlineIcon style={{ fontSize: 32 }}/>);
+ toast({ message: "Er is iets fout gegaan",
+ type: "error",
+ icon: <ErrorOutlineIcon/>});
});
}