From d3667fec19c63579b1f0c7e348762e8b4257f87d Mon Sep 17 00:00:00 2001 From: Aman Ganapathy <84686202+nams1570@users.noreply.github.com> Date: Tue, 16 Jun 2026 16:41:32 -0700 Subject: [PATCH] [Chore]: Fix broken build due to absent key (#1614) ### Summary of Changes Added clickmap to the app-card --- ## Summary by cubic Fixed a build error by adding the missing `clickmaps` key to `APP_ICONS` in the docs app-card and importing `MousePointerClick` from `lucide-react`. This restores the docs build and shows the Clickmaps icon in app cards. Written for commit 0c5d3331ac547e0d8dae2fafd19ece5e1634bc83. Summary will update on new commits. Review in cubic --- docs/src/components/mdx/app-card.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/src/components/mdx/app-card.tsx b/docs/src/components/mdx/app-card.tsx index 19ecd5423..93c3c4419 100644 --- a/docs/src/components/mdx/app-card.tsx +++ b/docs/src/components/mdx/app-card.tsx @@ -2,7 +2,7 @@ import { ALL_APPS, AppId } from "@hexclave/shared/dist/apps/apps-config"; import { AppIcon, appSquarePaddingExpression, appSquareWidthExpression } from "@hexclave/shared/dist/apps/apps-ui"; -import { BarChart3, ClipboardList, Code, CreditCard, Headset, KeyRound, Mail, Mails, PlayCircle, Rocket, ShieldCheck, ShieldEllipsis, Sparkles, Triangle, Tv, UserCog, Users, Vault, Webhook } from "lucide-react"; +import { BarChart3, ClipboardList, Code, CreditCard, Headset, KeyRound, Mail, Mails, MousePointerClick, PlayCircle, Rocket, ShieldCheck, ShieldEllipsis, Sparkles, Triangle, Tv, UserCog, Users, Vault, Webhook } from "lucide-react"; import Link from "next/link"; import { cn } from "../../lib/cn"; @@ -43,6 +43,7 @@ const APP_ICONS: Record