Skip to content

Commit

Permalink
fixed: share option now can display on single post
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxirious committed Apr 14, 2022
1 parent e6396e8 commit 77c55c8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/HomePostView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,11 @@ const HomePostView: React.FC = () => {
/>
</PostContainer>
)}
{v.data.postReference === undefined && <PostContainer key={v.id} postData={v.data} />}
{v.data.postReference === undefined && (
<PostContainer key={v.id} postData={v.data}>
<></>
</PostContainer>
)}
</>
);
})
Expand Down

0 comments on commit 77c55c8

Please sign in to comment.