From 709e83b6d5debcba7956205a9663960eaa98d8f4 Mon Sep 17 00:00:00 2001 From: jtricerolph Date: Sun, 26 Jul 2026 22:07:17 +0000 Subject: [PATCH] Register Zap and Thermometer icons for utilities and hvac apps Both apps were seeded in auth/src/db.js with icon names not present in AppIcon's iconMap, so the sidebar/dashboard rendered no icon. --- src/components/AppIcon.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/AppIcon.tsx b/src/components/AppIcon.tsx index b3e136b..c286f07 100644 --- a/src/components/AppIcon.tsx +++ b/src/components/AppIcon.tsx @@ -3,7 +3,7 @@ import { LayoutGrid, Users, Activity, Home, ScrollText, RefreshCw, ArrowUpCircle, Wifi, Terminal, Settings, Building2, CalendarClock, Wrench, BarChart2, Monitor, History, Armchair, UtensilsCrossed, - DollarSign, CalendarDays, + DollarSign, CalendarDays, Zap, Thermometer, } from 'lucide-react' import type { LucideProps } from 'lucide-react' @@ -14,7 +14,7 @@ const iconMap: Record = { LayoutGrid, Users, Activity, Home, ScrollText, RefreshCw, ArrowUpCircle, Wifi, Terminal, Settings, Building2, CalendarClock, Wrench, BarChart2, Monitor, History, Armchair, UtensilsCrossed, - DollarSign, CalendarDays, + DollarSign, CalendarDays, Zap, Thermometer, } interface Props {