From a7a8bb2ea8dcb717102b6d3f2116ea3fd942f6e5 Mon Sep 17 00:00:00 2001 From: Owaise Imdad Date: Wed, 5 Mar 2025 09:16:49 +0530 Subject: [PATCH] removed all console logs. --- src/Components/Inputs/Select/index.jsx | 1 - src/Utils/truncateUtils.jsx | 1 - 2 files changed, 2 deletions(-) diff --git a/src/Components/Inputs/Select/index.jsx b/src/Components/Inputs/Select/index.jsx index f6accc415..ec5f2d012 100644 --- a/src/Components/Inputs/Select/index.jsx +++ b/src/Components/Inputs/Select/index.jsx @@ -71,7 +71,6 @@ const Select = ({ if (!truncate) return; // If truncate is false, do not run this effect const calculateMaxLength = () => { - console.log(selectRef); if (selectRef.current) { const width = selectRef.current.offsetWidth; const calculatedMaxLength = Math.floor(width / maxStringLength); diff --git a/src/Utils/truncateUtils.jsx b/src/Utils/truncateUtils.jsx index 3bb38e9e2..2474bae4f 100644 --- a/src/Utils/truncateUtils.jsx +++ b/src/Utils/truncateUtils.jsx @@ -21,7 +21,6 @@ export const renderTruncatedValue = function ( maxLength, placeholder ) { - console.log(maxLength); if (isEmpty(displayName)) return placeholder; return truncate ? (