Fix for regression where conversations are not clickable (#6886)

This commit is contained in:
tofarr 2025-02-22 13:19:18 +00:00 committed by GitHub
parent bf82f75ae4
commit 70b21d16bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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>