diff options
-rw-r--r-- | src/components/ToolCard.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ToolCard.vue b/src/components/ToolCard.vue index e7e36a8..9c00367 100644 --- a/src/components/ToolCard.vue +++ b/src/components/ToolCard.vue @@ -16,7 +16,7 @@ <script setup lang="ts"> import type { ITool } from '@/tools/Tool'; -import { toRefs, defineProps } from 'vue'; +import { toRefs } from 'vue'; const props = defineProps<{ tool: ITool & { category: string } }>(); const { tool } = toRefs(props); |