From 923822242f57e5569276e13010f9bea2ebb91063 Mon Sep 17 00:00:00 2001 From: Kamil Tomsik Date: Fri, 3 May 2024 21:19:10 +0200 Subject: [PATCH] fix rest of the forms --- src/app/_components/AutoGrowTextarea.tsx | 4 ++-- src/app/chat/ChatInput.tsx | 2 +- src/app/chat/ChatPrompt.tsx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/_components/AutoGrowTextarea.tsx b/src/app/_components/AutoGrowTextarea.tsx index 294ec3a..49cb58c 100644 --- a/src/app/_components/AutoGrowTextarea.tsx +++ b/src/app/_components/AutoGrowTextarea.tsx @@ -1,6 +1,6 @@ -export const AutoGrowTextarea = ({ class: className = "", ...props }) => ( +export const AutoGrowTextarea = ({ class: className = "", value, onChange, ...props }) => (
-