🐛 fixing profile data and some QA issues

This commit is contained in:
ChatonDeAru
2024-09-26 16:14:57 +02:00
parent 622841eed3
commit 4bc3a58b3e
18 changed files with 121 additions and 61 deletions

View File

@@ -14,7 +14,7 @@ const links = computed(() => {
if (!user.value) {
tmp.push({
label: 'Rejoindre FO',
label: 'S\'inscrire sur FO',
to: '/join'
})
} else {
@@ -31,6 +31,8 @@ const signOut = async () => {
const { error } = await auth.signOut()
if (error) console.log(error)
router.push('/')
// TOFIX
}
</script>