diff --git a/apps/webapp/app/components/environments/EnvironmentLabel.tsx b/apps/webapp/app/components/environments/EnvironmentLabel.tsx index 35c5c05a33..33860b9c25 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); } };