feat: Apply minor UI styling adjustments to sidebar and progress components. Fixed linting for both frontend and backend

This commit is contained in:
Anish Sarkar 2025-12-27 15:27:29 +05:30
parent c28a90fc29
commit 70383931bb
4 changed files with 17 additions and 13 deletions

View file

@ -139,7 +139,8 @@ export const WriteTodosToolUI = makeAssistantToolUI<WriteTodosData, WriteTodosDa
}
// Success - render the plan
const planToRender = currentPlanState || (hasTodos ? parseSerializablePlan({ todos: data.todos }) : null);
const planToRender =
currentPlanState || (hasTodos ? parseSerializablePlan({ todos: data.todos }) : null);
if (!planToRender) {
return <WriteTodosLoading />;
}