From eb8193f3c134f193320d4605f0123df24f0a6a93 Mon Sep 17 00:00:00 2001 From: Matt Aitken Date: Thu, 29 May 2025 14:38:20 +0100 Subject: [PATCH] =?UTF-8?q?Remove=20onsole.log=E2=80=A6=20oops?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../webapp/app/components/environments/EnvironmentLabel.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/apps/webapp/app/components/environments/EnvironmentLabel.tsx b/apps/webapp/app/components/environments/EnvironmentLabel.tsx index 35c5c05a339..33860b9c254 100644 --- a/apps/webapp/app/components/environments/EnvironmentLabel.tsx +++ b/apps/webapp/app/components/environments/EnvironmentLabel.tsx @@ -82,12 +82,6 @@ export function EnvironmentLabel({ const checkTruncation = () => { if (spanRef.current) { const isTruncated = spanRef.current.scrollWidth > spanRef.current.clientWidth; - console.log( - "isTruncated", - isTruncated, - spanRef.current.scrollWidth, - spanRef.current.clientWidth - ); setIsTruncated(isTruncated); } };