From f4760fe33812f3a56e00db79142219ef798f0b33 Mon Sep 17 00:00:00 2001 From: Louis Knight-Webb Date: Tue, 17 Jun 2025 20:59:15 -0400 Subject: [PATCH] Task attempt 9c046c4f-9777-4508-96d5-9f73ef42f885 - Final changes --- frontend/src/components/tasks/TaskDetailsDialog.tsx | 2 +- frontend/src/pages/task-details.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/tasks/TaskDetailsDialog.tsx b/frontend/src/components/tasks/TaskDetailsDialog.tsx index dcab90e3..a71c58f5 100644 --- a/frontend/src/components/tasks/TaskDetailsDialog.tsx +++ b/frontend/src/components/tasks/TaskDetailsDialog.tsx @@ -73,7 +73,7 @@ export function TaskDetailsDialog({ TaskAttemptActivity[] >([]); const [activitiesLoading, setActivitiesLoading] = useState(false); - const [selectedExecutor, setSelectedExecutor] = useState("echo"); + const [selectedExecutor, setSelectedExecutor] = useState("claude"); const [creatingAttempt, setCreatingAttempt] = useState(false); const [stoppingAttempt, setStoppingAttempt] = useState(false); diff --git a/frontend/src/pages/task-details.tsx b/frontend/src/pages/task-details.tsx index 7454609c..bc19f7cc 100644 --- a/frontend/src/pages/task-details.tsx +++ b/frontend/src/pages/task-details.tsx @@ -64,7 +64,7 @@ export function TaskDetailsPage() { TaskAttemptActivity[] >([]); const [activitiesLoading, setActivitiesLoading] = useState(false); - const [selectedExecutor, setSelectedExecutor] = useState("echo"); + const [selectedExecutor, setSelectedExecutor] = useState("claude"); const [creatingAttempt, setCreatingAttempt] = useState(false); const [stoppingAttempt, setStoppingAttempt] = useState(false); const [error, setError] = useState(null);