Skip to content

Commit

Permalink
fix: adjust shareButtonGroup position (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruby10127130 authored Oct 7, 2024
1 parent 7e7394a commit e25ee2f
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions components/Group/detail/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,6 @@ function GroupDetail({ id, source, isLoading }) {
) : (
<StyledStatus className="finished">已結束</StyledStatus>
)}
<ShareButtonGroup
title={source?.title}
text={source?.description}
url={window.location.href}
hashtag={source?.hashtag}
/>
</Box>
{isMyGroup ? (
<StyledDesktopEditButton
Expand All @@ -67,6 +61,14 @@ function GroupDetail({ id, source, isLoading }) {
) : (
<More />
)}
<Box sx={{ mt: '8px' }}>
<ShareButtonGroup
title={source?.title}
text={source?.description}
url={window.location.href}
hashtag={source?.hashtag}
/>
</Box>
<StyledHeading>
{isLoading ? <Skeleton animation="wave" /> : source?.title}
</StyledHeading>
Expand Down

0 comments on commit e25ee2f

Please sign in to comment.