diff --git a/src/components/NoteCard.tsx b/src/components/NoteCard.tsx index 817d25e9..3c554f90 100644 --- a/src/components/NoteCard.tsx +++ b/src/components/NoteCard.tsx @@ -5,8 +5,8 @@ import { FileText, GitBranch, GitPullRequest, - Globe, MessageCircle, + Rocket, MoreHorizontal, Package, Palette, @@ -1668,16 +1668,18 @@ const KIND_HEADER_MAP: Record = { nounRoute: "/development", }, 15128: { - icon: Globe, - action: "deployed an", - noun: "nsite", - nounRoute: "/development", + icon: Rocket, + action: (tags) => { + const title = tags.find(([n]) => n === "title")?.[1]; + return title ? `deployed ${title}` : "deployed an nsite"; + }, }, 35128: { - icon: Globe, - action: "deployed an", - noun: "nsite", - nounRoute: "/development", + icon: Rocket, + action: (tags) => { + const title = tags.find(([n]) => n === "title")?.[1]; + return title ? `deployed ${title}` : "deployed an nsite"; + }, }, };