Skip to content

Commit c96fd9d

Browse files
committed
fix(lint): single function argument
1 parent a1582b6 commit c96fd9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/app/app.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { withoutTrailingSlash } from 'ufo'
44
const route = useRoute()
55
66
const { data: navigation } = await useAsyncData('navigation', () => queryCollectionNavigation('docs'), {
7-
transform: (data) => data.find(item => item.path === '/docs')?.children || [],
7+
transform: data => data.find(item => item.path === '/docs')?.children || [],
88
})
99
const { data: files } = useLazyAsyncData('search', () => queryCollectionSearchSections('docs'), {
1010
server: false,

0 commit comments

Comments
 (0)