Skip to content

Commit

Permalink
Fix jumpy conversation panel (#6874)
Browse files Browse the repository at this point in the history
  • Loading branch information
tofarr authored Feb 21, 2025
1 parent fab4532 commit d03b977
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ export function ConversationPanel({ onClose }: ConversationPanelProps) {
<div
ref={ref}
data-testid="conversation-panel"
className="w-[350px] h-full border border-neutral-700 bg-base-secondary rounded-xl overflow-y-auto"
className="w-[350px] h-full border border-neutral-700 bg-base-secondary rounded-xl overflow-y-auto absolute"
>
<div className="pt-4 px-4 flex items-center justify-between">
<div className="w-full h-full absolute flex justify-center items-center">
{isFetching && <LoadingSpinner size="small" />}
</div>
{error && (
Expand Down

0 comments on commit d03b977

Please sign in to comment.