From f4f2f1756fbced68e78865719394b96a581f8a2a Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Wed, 3 Sep 2025 18:52:05 +0200 Subject: [PATCH] feat: update CommandPalette styling and remove unused 'uses' translations for improved clarity and organization --- app/components/chat/CommandPalette.vue | 2 +- app/components/tool/Uses.vue | 7 ++----- locales/en.json | 6 ------ locales/es.json | 6 ------ locales/fr.json | 6 ------ 5 files changed, 3 insertions(+), 24 deletions(-) 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}`,