removed all console logs.

This commit is contained in:
Owaise Imdad
2025-03-05 09:16:49 +05:30
parent 3226035589
commit a7a8bb2ea8
2 changed files with 0 additions and 2 deletions

View File

@@ -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);

View File

@@ -21,7 +21,6 @@ export const renderTruncatedValue = function (
maxLength,
placeholder
) {
console.log(maxLength);
if (isEmpty(displayName)) return placeholder;
return truncate ? (