From 02fda206a19834815e585d2d27b7461fca755266 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Sat, 14 Jun 2025 19:45:00 +0200 Subject: [PATCH] Only render signatures if there are > 0 --- src/components/MapNode.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/MapNode.tsx b/src/components/MapNode.tsx index c0a0a7f..f50bd92 100644 --- a/src/components/MapNode.tsx +++ b/src/components/MapNode.tsx @@ -154,7 +154,7 @@ export const MapNode: React.FC = ({ className="pointer-events-none select-none" style={{ textShadow: '1px 1px 2px rgba(0,0,0,0.8)' }} > - {signatures !== undefined && `📡 ${signatures}`} + {signatures !== undefined && signatures > 0 && `📡 ${signatures}`} );