Skip to content

Commit

Permalink
Update ShareView.tsx imports order
Browse files Browse the repository at this point in the history
  • Loading branch information
danny-avila authored and monotykamary committed Sep 21, 2024
1 parent dbb9ec2 commit 71e8a67
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 71e8a67

Please sign in to comment.