feat: redirect to dashboard after login by default

This commit is contained in:
EETagent 2022-12-03 17:10:41 +01:00
parent 319223dbbc
commit 0df661ab74

View file

@ -45,7 +45,7 @@
async function submit() { async function submit() {
try { try {
await login({applicationId, password: codeValueMobile}); await login({applicationId, password: codeValueMobile});
goto("/register"); goto("/dashboard");
} catch (e) { } catch (e) {
console.error(e); console.error(e);
} }