diff --git a/app/components/chat/CommandPalette.vue b/app/components/chat/CommandPalette.vue index 4e25934..3421ee4 100644 --- a/app/components/chat/CommandPalette.vue +++ b/app/components/chat/CommandPalette.vue @@ -73,7 +73,7 @@ const commandPaletteUi = { :disabled="loading" > diff --git a/app/components/tool/Uses.vue b/app/components/tool/Uses.vue index aff8b4a..031160d 100644 --- a/app/components/tool/Uses.vue +++ b/app/components/tool/Uses.vue @@ -6,7 +6,7 @@ const props = defineProps({ }, }) -const { t, locale } = useI18n() +const { locale } = useI18n() const { data: items } = await useAsyncData(`uses-${props.category}`, async () => await queryCollection('uses').where('category', '=', props.category).all()) const { data: categoryData } = await useAsyncData(`category-${props.category}`, async () => await queryCollection('usesCategories').where('slug', '=', props.category).first()) @@ -14,10 +14,7 @@ const { data: categoryData } = await useAsyncData(`category-${props.category}`,