fix typos

This commit is contained in:
Jonathan Bourdon
2024-08-05 13:24:01 -04:00
parent 08f3425bc0
commit 743bfea56e

View File

@@ -6,7 +6,7 @@
<img class="rounded-none sm:rounded-2xl sm:w-full mr-8" src="/images/hutopymedia/loginpage/loginhutopy.png" alt="hutopy login"> <img class="rounded-none sm:rounded-2xl sm:w-full mr-8" src="/images/hutopymedia/loginpage/loginhutopy.png" alt="hutopy login">
</div> </div>
<div class="flex flex-col items-center min-w-[300px] m-12"> <div class="flex flex-col items-center min-w-[300px] m-12">
<LoginForm :onSuccess="handleSuccess"></LoginForm> <login-form :onSuccess="handleSuccess"></login-form>
</div> </div>
</div> </div>
</div> </div>
@@ -20,7 +20,7 @@ import { useRouter } from 'vue-router';
const router = useRouter(); const router = useRouter();
const handleSuccess = () => { const handleSuccess = async () => {
router.push('/'); await router.push('/')
} }
</script> </script>