From 2d2d9c9dcaa039a0aa55a7f5c4c0f732dc4bd564 Mon Sep 17 00:00:00 2001 From: Brian McGee Date: Fri, 1 Aug 2025 16:28:01 +0100 Subject: [PATCH] chore(ui): remove some console.log statements --- pkgs/clan-app/ui/src/components/Form/TextArea.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/clan-app/ui/src/components/Form/TextArea.tsx b/pkgs/clan-app/ui/src/components/Form/TextArea.tsx index fddbddbc0..819f0644c 100644 --- a/pkgs/clan-app/ui/src/components/Form/TextArea.tsx +++ b/pkgs/clan-app/ui/src/components/Form/TextArea.tsx @@ -48,9 +48,6 @@ export const TextArea = (props: TextAreaProps) => { // Update the height textareaRef.style.height = `${newHeight}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