Skip to content

Commit 5b2b7b4

Browse files
author
Dylan Huang
committed
match height of logs
1 parent 8421236 commit 5b2b7b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vite-app/src/components/ChatInterface.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export const ChatInterface = ({ messages }: ChatInterfaceProps) => {
8787
e.preventDefault();
8888
const deltaY = e.clientY - initialMouseY;
8989
const newHeight = initialHeight + deltaY;
90-
setChatHeight(Math.max(200, Math.min(800, newHeight))); // Min 200px, max 800px
90+
setChatHeight(Math.max(200, Math.min(844, newHeight))); // Min 200px, max 844px
9191
}
9292
};
9393

0 commit comments

Comments
 (0)