From c26c7da091d5ca89dafef76311fbc4934ea18876 Mon Sep 17 00:00:00 2001 From: wass08 Date: Wed, 4 Mar 2026 11:25:42 +0100 Subject: [PATCH] remove logs --- packages/viewer/src/systems/zone/zone-system.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/viewer/src/systems/zone/zone-system.tsx b/packages/viewer/src/systems/zone/zone-system.tsx index ba7c122c..f845b379 100644 --- a/packages/viewer/src/systems/zone/zone-system.tsx +++ b/packages/viewer/src/systems/zone/zone-system.tsx @@ -46,14 +46,12 @@ export const ZoneSystem = () => { const prevLabel = document.getElementById(`${lastHighlightedZoneRef.current}-label`) const pin = prevLabel?.querySelector('.label-pin') as HTMLElement | null if (pin) pin.style.opacity = '0' - console.log('setting opacity to 0 for', lastHighlightedZoneRef.current) } // Fade in new zone label-pin if (highlightedZone) { const label = document.getElementById(`${highlightedZone}-label`) const pin = label?.querySelector('.label-pin') as HTMLElement | null if (pin) pin.style.opacity = '1' - console.log('setting opacity to 1 for', highlightedZone) } lastHighlightedZoneRef.current = highlightedZone