From 905a447760e1739a42704db5b3f035c0b1b58a55 Mon Sep 17 00:00:00 2001 From: jtricerolph Date: Wed, 8 Jul 2026 12:10:05 +0000 Subject: [PATCH] Fix issue #7: add Wrench and BarChart2 to portal AppIcon map Maintenance (Wrench) and Reports (BarChart2) icons were missing from the hardcoded iconMap, causing those app tiles to show no icon. Co-Authored-By: Claude Sonnet 4.6 --- src/components/AppIcon.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/AppIcon.tsx b/src/components/AppIcon.tsx index 9aca6da..15f66e8 100644 --- a/src/components/AppIcon.tsx +++ b/src/components/AppIcon.tsx @@ -2,6 +2,7 @@ import { ClipboardList, ChefHat, Banknote, BedDouble, TrendingUp, Tag, LayoutGrid, Users, Activity, Home, ScrollText, RefreshCw, ArrowUpCircle, Wifi, Terminal, Settings, Building2, CalendarClock, + Wrench, BarChart2, } from 'lucide-react' import type { LucideProps } from 'lucide-react' @@ -11,6 +12,7 @@ const iconMap: Record = { ClipboardList, ChefHat, Banknote, BedDouble, TrendingUp, Tag, LayoutGrid, Users, Activity, Home, ScrollText, RefreshCw, ArrowUpCircle, Wifi, Terminal, Settings, Building2, CalendarClock, + Wrench, BarChart2, } interface Props {