Skip to content

Commit

Permalink
Fix for regression where conversations are not clickable (#6886)
Browse files Browse the repository at this point in the history
  • Loading branch information
tofarr authored Feb 22, 2025
1 parent bf82f75 commit 70b21d1
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,11 @@ export function ConversationPanel({ onClose }: ConversationPanelProps) {
data-testid="conversation-panel"
className="w-[350px] h-full border border-neutral-700 bg-base-secondary rounded-xl overflow-y-auto absolute"
>
<div className="w-full h-full absolute flex justify-center items-center">
{isFetching && <LoadingSpinner size="small" />}
</div>
{isFetching && (
<div className="w-full h-full absolute flex justify-center items-center">
<LoadingSpinner size="small" />
</div>
)}
{error && (
<div className="flex flex-col items-center justify-center h-full">
<p className="text-danger">{error.message}</p>
Expand Down

0 comments on commit 70b21d1

Please sign in to comment.