From 2443fd70ebc5232f2b1f8b560754270656f0e3fc Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Tue, 23 Jul 2024 13:22:25 +0200 Subject: [PATCH] docs: typecheck --- docs/components/content/examples/CommandPaletteExampleAsync.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/components/content/examples/CommandPaletteExampleAsync.vue b/docs/components/content/examples/CommandPaletteExampleAsync.vue index 4f00db99..f459d162 100644 --- a/docs/components/content/examples/CommandPaletteExampleAsync.vue +++ b/docs/components/content/examples/CommandPaletteExampleAsync.vue @@ -7,6 +7,7 @@ const groups = [{ return [] } + // @ts-ignore const users: any[] = await $fetch('https://jsonplaceholder.typicode.com/users', { params: { q } }) return users.map(user => ({ id: user.id, label: user.name, suffix: user.email }))