Skip to content

Commit d34bb27

Browse files
committed
types: fix
1 parent 7e59f29 commit d34bb27

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/src/components/AppFooter.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import { computed } from 'vue'
33
import { useStudio } from '../composables/useStudio'
44
import { useStudioState } from '../composables/useStudioState'
5+
import type { DropdownMenuItem } from '@nuxt/ui'
56
67
const { ui, host, git } = useStudio()
78
const { preferences, updatePreference, unsetActiveLocation } = useStudioState()
@@ -38,7 +39,7 @@ const userMenuItems = computed(() => [
3839
})
3940
},
4041
}],
41-
].filter(Boolean))
42+
].filter(Boolean) as DropdownMenuItem[][])
4243
4344
function closeStudio() {
4445
unsetActiveLocation()

0 commit comments

Comments
 (0)