Skip to content

Commit

Permalink
chore: add console.error for lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wazolab committed Jul 10, 2024
1 parent 3ba8cf2 commit 98b67a4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ await callOnce(async () => {
const user = await useFetchWithCache<User>('user', `${useRuntimeConfig().public.API}/users/me`, { credentials: 'include' })
useState<User>('user', () => user.value)
}
catch (err: any) {}
catch (err: any) {
console.error('Clearance Error :', err.message)
}
})
try {
Expand Down

0 comments on commit 98b67a4

Please sign in to comment.