extend error toast auto close time to 10s on login and signup

This commit is contained in:
Anton Tranelis 2024-05-06 10:08:23 +02:00
parent 8b1b6d3087
commit 99a6fdfc0f
2 changed files with 3 additions and 1 deletions

View File

@ -32,8 +32,9 @@ export function LoginPage() {
render({ data }) {
return `${data}`
},
autoClose: 10000,
},
pending: 'logging in ...'
pending: 'logging in ...',
});
}

View File

@ -34,6 +34,7 @@ export function SignupPage() {
render({ data }) {
return `${data}`
},
autoClose: 10000,
},
pending: 'creating new user ...'
});