fix: Add missing IconTextButton import in PackUninstallButton

Component was using IconTextButton in template but missing explicit import,
causing Vue runtime warning about unresolved component.
This commit is contained in:
bymyself
2025-08-31 14:28:41 -07:00
parent b5bf6fd6e5
commit 154dbb5dda

View File

@@ -15,6 +15,7 @@
</template>
<script setup lang="ts">
import IconTextButton from '@/components/button/IconTextButton.vue'
import { useComfyManagerStore } from '@/stores/comfyManagerStore'
import { ButtonSize } from '@/types/buttonTypes'
import type { ManagerPackInfo } from '@/types/comfyManagerTypes'