Skip to content

Commit

Permalink
fix: 더보기 버튼 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
bongtta committed Jan 24, 2025
1 parent 1e96c6c commit 14dabe4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/client/src/pages/my/page/profile/my-profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const MyProfile = () => {
<Box
title="My Artist"
path={routePath.MY_ARTIST}
showMore={artistData.artists.length > 0}
showMore={artistData.artists.length > 3}
>
{artistData.artists.length > 0 ? (
<ArtistSection artists={artistData.artists.slice(0, 3)} />
Expand All @@ -42,7 +42,7 @@ const MyProfile = () => {
<Box
title="My Confeti"
path={routePath.MY_CONFETI}
showMore={performanceData.performances.length > 0}
showMore={performanceData.performances.length > 3}
>
{performanceData.performances.length > 0 ? (
<ConfetiSection performances={performanceData.performances} />
Expand Down

0 comments on commit 14dabe4

Please sign in to comment.