diff options
Diffstat (limited to 'src/components/SearchBarItem.vue')
-rw-r--r-- | src/components/SearchBarItem.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/SearchBarItem.vue b/src/components/SearchBarItem.vue index d81606a..ca79268 100644 --- a/src/components/SearchBarItem.vue +++ b/src/components/SearchBarItem.vue @@ -1,8 +1,8 @@ <script lang="ts" setup> -import type { ITool } from '@/tools/tool'; +import type { Tool } from '@/tools/tools.types'; import { toRefs } from 'vue'; -const props = defineProps<{ tool: ITool }>(); +const props = defineProps<{ tool: Tool }>(); const { tool } = toRefs(props); </script> |