diff --git a/.prettierrc b/.prettierrc index 299b9e1..abd78f1 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,5 +1,6 @@ { "singleQuote": true, "semi": false, - "trailingComma": "none" + "trailingComma": "none", + "singleAttributePerLine": true } diff --git a/app/components/TeamsMenu.vue b/app/components/TeamsMenu.vue deleted file mode 100644 index cb0ec9b..0000000 --- a/app/components/TeamsMenu.vue +++ /dev/null @@ -1,80 +0,0 @@ - - - diff --git a/app/components/home/HomeChart.client.vue b/app/components/home/HomeChart.client.vue index e5a7b2a..f365be5 100644 --- a/app/components/home/HomeChart.client.vue +++ b/app/components/home/HomeChart.client.vue @@ -106,12 +106,28 @@ const template = (d: DataRecord) => class="h-96" :width="width" > - - - - - - + + + + + + diff --git a/app/composables/useAuth.ts b/app/composables/useAuth.ts index 3af37dc..ab6eb00 100644 --- a/app/composables/useAuth.ts +++ b/app/composables/useAuth.ts @@ -5,7 +5,6 @@ export const useAuth = () => { const loadAuthUser = async () => { const { data } = await supabase.auth.getUser() user.value = data.user - console.log('Auth user loaded:', user.value) } const login = async (email: string, password: string) => { diff --git a/app/composables/useDashboard.ts b/app/composables/useDashboard.ts index 9623e1b..32e78af 100644 --- a/app/composables/useDashboard.ts +++ b/app/composables/useDashboard.ts @@ -6,7 +6,7 @@ const _useDashboard = () => { defineShortcuts({ 'g-h': () => router.push('/'), 'g-a': () => router.push('/anuncios'), - 'g-s': () => router.push('/settings'), + 'g-s': () => router.push('/settings') }) } diff --git a/app/layouts/default.vue b/app/layouts/default.vue index b680dcc..1baa370 100644 --- a/app/layouts/default.vue +++ b/app/layouts/default.vue @@ -1,14 +1,12 @@