fix(wizard): resolve build type errors and syntax in step-billing and step-software
All checks were successful
Staging Build / build (push) Successful in 2m54s

This commit is contained in:
DanielS
2026-08-10 22:57:21 +02:00
parent ed654f542c
commit 1aa694a665
3 changed files with 6 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ interface StepSoftwareProps {
activeCategoryId: string | null
}
function CategoryIcon({ icon, className }: { icon?: string | null; className?: string }) {
export function CategoryIcon({ icon, className }: { icon?: string | null; className?: string }) {
const LucideIcon = icon ? (Icons as any)[icon] : null
if (!LucideIcon) return <Icons.HelpCircle className={className} />
return <LucideIcon className={className} />