fix: Resolve vue-tsc -b errors in KitsView and TimedExecuteView
All checks were successful
Test Asgard Runner / test (push) Successful in 3s

KitsView: cast v-for Items array to fix string|number index type mismatch.
TimedExecuteView: remove unused X icon import.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Vantz Stockwell
2026-02-22 02:43:32 -05:00
parent 2668014068
commit 7d5966839a
2 changed files with 1 additions and 2 deletions

View File

@@ -488,7 +488,7 @@ async function handleImport() {
<div v-else class="space-y-3">
<div
v-for="(item, itemIdx) in currentKit.Items"
v-for="(item, itemIdx) in (currentKit.Items as any[])"
:key="itemIdx"
class="flex items-center gap-3 bg-neutral-800/50 border border-neutral-700/50 rounded-lg p-3"
>

View File

@@ -9,7 +9,6 @@ import {
Trash2,
Clock,
Settings as SettingsIcon,
X,
UserPlus,
UserMinus,
} from 'lucide-vue-next'