Skip to content

Commit 8218c2a

Browse files
committed
fix(dashboard,auth): avoid SSR stats fetch on reload; adjust auth cookie handling for local dev
1 parent e1bdb92 commit 8218c2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/pages/dashboard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ defineOptions({ name: 'DashboardPage' })
8484
8585
const auth = useAuth()
8686
87-
const { data, error, pending } = await useAsyncData(
87+
const { data, error, pending } = useAsyncData(
8888
'dashboard-stats',
8989
async () => apiClient.getDashboardStats('30d'),
9090
{ server: false }

0 commit comments

Comments
 (0)