diff --git a/frontend/src/components/projects/project-list.tsx b/frontend/src/components/projects/project-list.tsx index 00ca32b7..17694963 100644 --- a/frontend/src/components/projects/project-list.tsx +++ b/frontend/src/components/projects/project-list.tsx @@ -142,7 +142,7 @@ export function ProjectList() { }, []); return ( -
+

Projects

diff --git a/frontend/src/components/tasks/AttemptHeaderCard.tsx b/frontend/src/components/tasks/AttemptHeaderCard.tsx index a458734c..44736018 100644 --- a/frontend/src/components/tasks/AttemptHeaderCard.tsx +++ b/frontend/src/components/tasks/AttemptHeaderCard.tsx @@ -57,7 +57,7 @@ export function AttemptHeaderCard({ return ( -
+

Attempt · {attemptNumber}/{totalAttempts} diff --git a/frontend/src/components/tasks/TaskFollowUpSection.tsx b/frontend/src/components/tasks/TaskFollowUpSection.tsx index 8144faea..055f8744 100644 --- a/frontend/src/components/tasks/TaskFollowUpSection.tsx +++ b/frontend/src/components/tasks/TaskFollowUpSection.tsx @@ -1,31 +1,31 @@ import { AlertCircle, CheckCircle2, - WifiOff, - Clock, - Send, ChevronDown, + Clock, ImageIcon, + Loader2, + Send, StopCircle, + WifiOff, } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { ImageUploadSection } from '@/components/ui/ImageUploadSection'; import { Alert, AlertDescription } from '@/components/ui/alert'; import { FileSearchTextarea } from '@/components/ui/file-search-textarea'; -import { useEffect, useMemo, useState, useRef, useCallback } from 'react'; +import { useCallback, useEffect, useMemo, useRef, useState } from 'react'; import { attemptsApi, imagesApi, type UpdateFollowUpDraftRequest, } from '@/lib/api.ts'; import type { + FollowUpDraft, ImageResponse, TaskWithAttemptStatus, - FollowUpDraft, } from 'shared/types'; import { useBranchStatus } from '@/hooks'; import { useAttemptExecution } from '@/hooks/useAttemptExecution'; -import { Loader2 } from 'lucide-react'; import { useUserSystem } from '@/components/config-provider'; import { DropdownMenu, @@ -890,7 +890,7 @@ export function TaskFollowUpSection({ ) : null}

-
+
{/* Image button */}