(totalCount || 0) > 0 && (pendingCount || 0) === 0
? "none"
: "flex",
),
alignItems: "center",
gap: "6px",
marginTop: "4px",
height: "16px",
}}
>
{/* Indeterminate loading state (fetching) */}
((totalCount || 0) === 0 ? "flex" : "none"),
),
alignItems: "center",
gap: "6px",
}}
>
Loading...
{/* Progress state (analyzing) */}
(totalCount || 0) > 0 && (pendingCount || 0) > 0
? "flex"
: "none"
),
alignItems: "center",
gap: "6px",
flex: 1,
}}
>
{completedCount}/{totalCount} analyzing...
),
};
},
);