From f5132a65e9f78121ac7527fc41706d5af577f802 Mon Sep 17 00:00:00 2001 From: Marco Beretta <81851188+berry-13@users.noreply.github.com> Date: Tue, 25 Nov 2025 21:17:15 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9E=95=20style:=20Update=20"Copy=20Agent"=20?= =?UTF-8?q?Icon=20for=20Clearer=20Action=20(#10651)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/Conversations/ConvoOptions/ConvoOptions.tsx | 4 ++-- client/src/components/SidePanel/Agents/DuplicateAgent.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/components/Conversations/ConvoOptions/ConvoOptions.tsx b/client/src/components/Conversations/ConvoOptions/ConvoOptions.tsx index 9cf1a109d3..46b1b7d2f7 100644 --- a/client/src/components/Conversations/ConvoOptions/ConvoOptions.tsx +++ b/client/src/components/Conversations/ConvoOptions/ConvoOptions.tsx @@ -2,7 +2,7 @@ import { useState, useId, useRef, memo, useCallback, useMemo } from 'react'; import * as Menu from '@ariakit/react/menu'; import { useParams, useNavigate } from 'react-router-dom'; import { DropdownPopup, Spinner, useToastContext } from '@librechat/client'; -import { Ellipsis, Share2, Copy, Archive, Pen, Trash } from 'lucide-react'; +import { Ellipsis, Share2, CopyPlus, Archive, Pen, Trash } from 'lucide-react'; import type { MouseEvent } from 'react'; import { useDuplicateConversationMutation, @@ -151,7 +151,7 @@ function ConvoOptions({ icon: isDuplicateLoading ? ( ) : ( - + ), }, { diff --git a/client/src/components/SidePanel/Agents/DuplicateAgent.tsx b/client/src/components/SidePanel/Agents/DuplicateAgent.tsx index c5d63b81a1..fe66a86281 100644 --- a/client/src/components/SidePanel/Agents/DuplicateAgent.tsx +++ b/client/src/components/SidePanel/Agents/DuplicateAgent.tsx @@ -1,4 +1,4 @@ -import { CopyIcon } from 'lucide-react'; +import { CopyPlus } from 'lucide-react'; import { useToastContext, Button } from '@librechat/client'; import { useDuplicateAgentMutation } from '~/data-provider'; import { isEphemeralAgent } from '~/common'; @@ -41,7 +41,7 @@ export default function DuplicateAgent({ agent_id }: { agent_id: string }) { onClick={handleDuplicate} >
- +
);