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;