refactor: remove conditional rendering for step title in ThinkingStepsDisplay component

This commit is contained in:
Anish Sarkar 2026-03-20 16:46:05 +05:30
parent 75cf12974a
commit f16e0d95ad

View file

@ -127,11 +127,7 @@ export const ThinkingStepsDisplay: FC<{ steps: ThinkingStep[]; isThreadRunning?:
effectiveStatus === "pending" && "text-muted-foreground/60" effectiveStatus === "pending" && "text-muted-foreground/60"
)} )}
> >
{effectiveStatus === "in_progress" ? ( {step.title}
<TextShimmerLoader text={step.title} size="sm" />
) : (
step.title
)}
</div> </div>
{/* Step items (sub-content) */} {/* Step items (sub-content) */}