refactor: replace Activity icons with Workflow icons across various components for consistency

This commit is contained in:
Anish Sarkar 2026-05-15 00:47:21 +05:30
parent 3846056bc7
commit 56239548c8
6 changed files with 14 additions and 19 deletions

View file

@ -1,7 +1,7 @@
"use client";
import { useAtomValue, useSetAtom } from "jotai";
import { Activity } from "lucide-react";
import { Workflow } from "lucide-react";
import { useCallback } from "react";
import { openActionLogSheetAtom } from "@/atoms/agent/action-log-sheet.atom";
import { agentFlagsAtom } from "@/atoms/agent/agent-flags-query.atom";
@ -41,7 +41,7 @@ export function ActionLogButton({ threadId }: ActionLogButtonProps) {
aria-label="Open agent action log"
onClick={handleClick}
>
<Activity className="size-4" />
<Workflow className="size-4 text-muted-foreground" />
</Button>
</TooltipTrigger>
<TooltipContent>Agent actions</TooltipContent>