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