From 36a46de3565fcea9adf351659927963cf053959d Mon Sep 17 00:00:00 2001 From: daniel-lxs Date: Wed, 10 Sep 2025 16:59:44 -0500 Subject: [PATCH] fix: preserve forwardRef in ChatView for ref compatibility --- webview-ui/src/components/chat/ChatView.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webview-ui/src/components/chat/ChatView.tsx b/webview-ui/src/components/chat/ChatView.tsx index 47c76ca1b6..5d11835d90 100644 --- a/webview-ui/src/components/chat/ChatView.tsx +++ b/webview-ui/src/components/chat/ChatView.tsx @@ -2164,12 +2164,12 @@ const ChatViewInner: React.ForwardRefRenderFunction const ChatViewWithRef = forwardRef(ChatViewInner) -const ChatView: React.FC = (props) => { +const ChatView = forwardRef((props, ref) => { return ( - + ) -} +}) export default ChatView