minor: rename onLoginSubmit / onLoginClick
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 1m2s

This commit is contained in:
2025-09-18 12:28:29 -04:00
parent 0e8dd8f01e
commit 48c8454f2a
4 changed files with 43 additions and 46 deletions

View File

@@ -1,5 +1,5 @@
<script setup lang="ts">
const { onLogoutClick } = useAuth();
const { logout } = useAuth();
</script>
<template>
@@ -18,7 +18,7 @@ const { onLogoutClick } = useAuth();
loading-auto
to="/auth"
label="Déconnexion"
@click="onLogoutClick"
@click="logout"
/>
</div>
</template>