Removed console.log and reduced timeout

This commit is contained in:
Dominic Villemure
2024-03-11 22:10:36 -04:00
parent bfef2b2d8c
commit ea716ec637
3 changed files with 3 additions and 8 deletions

View File

@@ -48,7 +48,6 @@ const client = useClient();
const router = useRouter()
let user = ref({});
let errorSnackBar = ref(false);
const goHome = () => {
@@ -60,7 +59,6 @@ async function login(){
await authStore.login(client, user.value.email, user.value.password)
router.push('/');
} catch (error) {
console.log(error);
errorSnackBar.value = true;
}
}