Skip to content

Commit

Permalink
fix: increase messagesEnd height
Browse files Browse the repository at this point in the history
  • Loading branch information
denys-kolomiitsev committed Nov 3, 2023
1 parent eddc4e4 commit c9a4f79
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/Chat/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ export const Chat = memo(({ appName }: Props) => {
)}
<div
className="shrink-0 "
style={{ height: inputHeight }}
style={{ height: `${inputHeight + 52}px` }}
ref={messagesEndRef}
/>
</div>
Expand Down Expand Up @@ -733,7 +733,10 @@ export const Chat = memo(({ appName }: Props) => {
);
}}
/>
<div className="shrink-0 " style={{ height: inputHeight }} />
<div
className="shrink-0 "
style={{ height: `${inputHeight + 52}px` }}
/>
</div>
)}
</div>
Expand Down

0 comments on commit c9a4f79

Please sign in to comment.