fix: Remove unused TypeScript imports and variables
All checks were successful
Test Asgard Runner / test (push) Successful in 3s

- Remove unused ExternalLink import from ModuleStoreView
- Remove unused Tag import from StoreItemsView
- Prefix unused cmd variable with underscore in v-for loop

Fixes production build TypeScript errors.
This commit is contained in:
Vantz Stockwell
2026-02-15 17:05:52 -05:00
parent 071ab80e40
commit 109476d5e3
2 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ import { ref, computed, onMounted } from 'vue'
import { useApi } from '@/composables/useApi'
import { useAuthStore } from '@/stores/auth'
import type { Module } from '@/types'
import { ShoppingCart, Package, Search, Filter, X, Check, Download, AlertCircle, ExternalLink } from 'lucide-vue-next'
import { ShoppingCart, Package, Search, Filter, X, Check, Download, AlertCircle } from 'lucide-vue-next'
const api = useApi()
const auth = useAuthStore()