Skip to content

Commit

Permalink
chore(deps): update dependency @antfu/eslint-config to v2.22.0 (#201)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency @antfu/eslint-config to v2.22.0

* chore: add console.error for lint fix

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Noé Viricel <noe.viricel@wazo-lab.io>
  • Loading branch information
renovate[bot] and wazolab authored Jul 10, 2024
1 parent e6cd33e commit f2f0188
Show file tree
Hide file tree
Showing 2 changed files with 393 additions and 33 deletions.
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
Loading

0 comments on commit f2f0188

Please sign in to comment.