Skip to content

Commit

Permalink
fix: rebase issue
Browse files Browse the repository at this point in the history
  • Loading branch information
blushi committed Jul 16, 2024
1 parent 6d7d8e3 commit 1e65e87
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ import { ADMIN, POST_IS_PRIVATE } from 'pages/Post/Post.constants';
import { DEFAULT_NAME } from 'pages/ProfileEdit/ProfileEdit.constants';
import { getDefaultAvatar } from 'pages/ProfileEdit/ProfileEdit.utils';

import { API_URI, IMAGE_STORAGE_BASE_URL } from './ProjectDetails.config';
import {
FILES_ARE_PRIVATE,
LOCATIONS_ARE_PRIVATE,
Expand All @@ -65,6 +64,8 @@ export const DataStreamPost = ({
useApolloClient() as ApolloClient<NormalizedCacheObject>;
const setBannerText = useSetAtom(bannerTextAtom);
const navigate = useNavigate();
const [preview, setPreview] = useState<string | undefined>();
const [file, setFile] = useState<FileToPreview | undefined>();
const { iri, createdAt } = post;
const sharePrivateLink = useSharePrivateLink({ iri });

Expand Down

0 comments on commit 1e65e87

Please sign in to comment.