From 29b83148704595ebf569d82e55d65f461fc4552c Mon Sep 17 00:00:00 2001 From: Marco Beretta <81851188+berry-13@users.noreply.github.com> Date: Fri, 22 Aug 2025 11:09:59 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20Refactor=20imports=20and=20?= =?UTF-8?q?remove=20unnecessary=20props=20in=20Artifact=20components?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/components/Artifacts/ArtifactTabs.tsx | 1 - client/src/components/Artifacts/ArtifactVersion.tsx | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/client/src/components/Artifacts/ArtifactTabs.tsx b/client/src/components/Artifacts/ArtifactTabs.tsx index c797d310ed..67342448c0 100644 --- a/client/src/components/Artifacts/ArtifactTabs.tsx +++ b/client/src/components/Artifacts/ArtifactTabs.tsx @@ -19,7 +19,6 @@ export default function ArtifactTabs({ artifact: Artifact; editorRef: React.MutableRefObject; previewRef: React.MutableRefObject; - isSubmitting: boolean; }) { const { isSubmitting } = useArtifactsContext(); const { currentCode, setCurrentCode } = useEditorContext(); diff --git a/client/src/components/Artifacts/ArtifactVersion.tsx b/client/src/components/Artifacts/ArtifactVersion.tsx index 95ba8bd3d4..a344c28f1a 100644 --- a/client/src/components/Artifacts/ArtifactVersion.tsx +++ b/client/src/components/Artifacts/ArtifactVersion.tsx @@ -1,8 +1,8 @@ import React, { useState } from 'react'; import { MenuButton } from '@ariakit/react'; import { History, Check } from 'lucide-react'; -import { DropdownPopup, TooltipAnchor, Button } from '~/components'; -import { useLocalize, useMediaQuery } from '~/hooks'; +import { DropdownPopup, TooltipAnchor, Button, useMediaQuery } from '@librechat/client'; +import { useLocalize } from '~/hooks'; interface ArtifactVersionProps { currentIndex: number;