We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8421236 commit 5b2b7b4Copy full SHA for 5b2b7b4
vite-app/src/components/ChatInterface.tsx
@@ -87,7 +87,7 @@ export const ChatInterface = ({ messages }: ChatInterfaceProps) => {
87
e.preventDefault();
88
const deltaY = e.clientY - initialMouseY;
89
const newHeight = initialHeight + deltaY;
90
- setChatHeight(Math.max(200, Math.min(800, newHeight))); // Min 200px, max 800px
+ setChatHeight(Math.max(200, Math.min(844, newHeight))); // Min 200px, max 844px
91
}
92
};
93
0 commit comments