Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add artifacts UI for shared links #3940

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Prev Previous commit
Update ShareView.tsx imports order
  • Loading branch information
danny-avila authored and monotykamary committed Sep 25, 2024
commit edd15a271e44eda4b82368c2f7f461bab398e36b
6 changes: 3 additions & 3 deletions client/src/components/Share/ShareView.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import { memo, useEffect } from 'react';
import { useParams } from 'react-router-dom';
import { useRecoilState } from 'recoil';
import { useParams } from 'react-router-dom';
import { useGetSharedMessages, useGetStartupConfig } from 'librechat-data-provider/react-query';
import SharedArtifactButton from './SharedArtifactButton';
import { useLocalize, useDocumentTitle } from '~/hooks';
import SharedArtifacts from './SharedArtifacts';
import { ShareContext } from '~/Providers';
import { Spinner } from '~/components/svg';
import MessagesView from './MessagesView';
import { buildTree } from '~/utils';
import Footer from '../Chat/Footer';
import SharedArtifacts from './SharedArtifacts';
import { cn } from '~/utils';
import store from '~/store';
import SharedArtifactButton from './SharedArtifactButton';

function SharedView() {
const localize = useLocalize();
Expand Down