Only render signatures if there are > 0

This commit is contained in:
2025-06-14 19:45:00 +02:00
parent 75efe45cd4
commit 02fda206a1

View File

@@ -154,7 +154,7 @@ export const MapNode: React.FC<MapNodeProps> = ({
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}`}
</text>
</g>
);