mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-16 07:25:31 +01:00
fix scrolling bug
This commit is contained in:
parent
217bdb4865
commit
c36f752551
2 changed files with 3 additions and 5 deletions
|
|
@ -21,7 +21,7 @@ export default function Messages({ messages }) {
|
|||
|
||||
return (
|
||||
<div className="flex-1 overflow-y-auto ">
|
||||
<div className="flex-1 overflow-hidden">
|
||||
{/* <div className="flex-1 overflow-hidden"> */}
|
||||
<div className="h-full dark:bg-gray-800">
|
||||
<div className="flex h-full flex-col items-center text-sm dark:bg-gray-800">
|
||||
{messages.map((message, i) => (
|
||||
|
|
@ -39,7 +39,7 @@ export default function Messages({ messages }) {
|
|||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* </div> */}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue