Skip to content

Commit

Permalink
docs(app): ts error
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Nov 7, 2024
1 parent 1b6dbce commit 8c0693b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/app/error.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const colorMode = useColorMode()
const { data: navigation } = await useAsyncData('navigation', () => queryCollectionNavigation('docs'))
const { data: files } = await useAsyncData('files', () => queryCollectionSearchSections('docs', { ignoredTags: ['style'] }))
const color = computed(() => colorMode.value === 'dark' ? (colors as any)[appConfig.ui.colors.neutral][900] : 'white')
const color = computed(() => colorMode.value === 'dark' ? colors[appConfig.ui.colors.neutral as keyof typeof colors][900] : 'white')
useHead({
meta: [
Expand Down

0 comments on commit 8c0693b

Please sign in to comment.