Skip to content

Commit ac036b1

Browse files
committed
fix: remove duplicate CSS height property in AIChatPanel
Fixes accordproject#121 Signed-off-by: Shubh-Raj <shubhraj625@gmail.com>
1 parent 7f4bc65 commit ac036b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/AIChatPanel.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ export const AIChatPanel = () => {
233233
}, [chatState.messages, chatState.isLoading]);
234234

235235
return (
236-
<div className="twp pl-4 pr-4 -mr-1 flex flex-col border rounded-md h-[calc(100vh-150px)] h-full">
236+
<div className="twp pl-4 pr-4 -mr-1 flex flex-col border rounded-md h-full">
237237
<div className={theme.header}>
238238
<h2 className="text-lg font-bold" style={{ color: textColor }}>AI Assistant</h2>
239239
<div className="flex items-center gap-2">
@@ -592,4 +592,4 @@ export const AIChatPanel = () => {
592592
</div>
593593
</div>
594594
);
595-
}
595+
}

0 commit comments

Comments
 (0)