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} >
- +
);