Skip to content

Commit

Permalink
fix(lint): single function argument
Browse files Browse the repository at this point in the history
  • Loading branch information
larbish committed Nov 22, 2024
1 parent a1582b6 commit c96fd9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/app/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { withoutTrailingSlash } from 'ufo'
const route = useRoute()
const { data: navigation } = await useAsyncData('navigation', () => queryCollectionNavigation('docs'), {
transform: (data) => data.find(item => item.path === '/docs')?.children || [],
transform: data => data.find(item => item.path === '/docs')?.children || [],
})
const { data: files } = useLazyAsyncData('search', () => queryCollectionSearchSections('docs'), {
server: false,
Expand Down

0 comments on commit c96fd9d

Please sign in to comment.