Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhangWei-KUMO committed Apr 23, 2024
1 parent 6e43264 commit 461eb86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion next/src/components/TaskWindow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export const TaskWindow = ({ visibleOnMobile }: TaskWindowProps) => {
);
};

const Task = ({ task, index }: { task: Task; index: number }) => {
const Task = ({ task, index }: { task; index: number }) => {
const isAgentStopped = useAgentStore.use.isAgentStopped();
const deleteTask = useMessageStore.use.deleteTask();
const isTaskDeletable = task.taskId && !isAgentStopped && task.status === "started";
Expand Down

0 comments on commit 461eb86

Please sign in to comment.