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 ? (