chore(ui): remove some console.log statements

This commit is contained in:
Brian McGee
2025-08-01 16:28:01 +01:00
parent e0e16de144
commit 2d2d9c9dca

View File

@@ -48,9 +48,6 @@ export const TextArea = (props: TextAreaProps) => {
// Update the height // Update the height
textareaRef.style.height = `${newHeight}px`; textareaRef.style.height = `${newHeight}px`;
textareaRef.style.maxHeight = `${maxHeight}px`; textareaRef.style.maxHeight = `${maxHeight}px`;
console.log("min/max height", minHeight, maxHeight);
console.log("textarea ref style", textareaRef.style);
}; };
// Set up auto-resize effect // Set up auto-resize effect