Skip to content

Commit 6b02acb

Browse files
authored
Merge pull request #358 from Nexters/fix/qa-2025-12-18
fix: qa 4차 -1
2 parents c0fa356 + 7078861 commit 6b02acb

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

apps/profile/src/pages/ProfilePage/index.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,9 @@ const ProfilePage = () => {
231231
</Styled.Section>
232232
)}
233233

234-
<Styled.Divider />
234+
{profile.performedShow.isVisible && profile.performedShow.totalSize > 0 && (
235+
<Styled.Divider />
236+
)}
235237

236238
{profile.performedShow.isVisible && profile.performedShow.totalSize > 0 && (
237239
<Styled.PastShowSection>
@@ -263,7 +265,7 @@ const ProfilePage = () => {
263265
</Styled.PastShowSection>
264266
)}
265267

266-
<Styled.Divider />
268+
{profile.video.totalSize > 0 && <Styled.Divider />}
267269

268270
{profile.video.totalSize > 0 && (
269271
<Styled.Section>
@@ -283,7 +285,7 @@ const ProfilePage = () => {
283285
</Styled.Section>
284286
)}
285287

286-
<Styled.Divider />
288+
{profile.link.totalSize > 0 && <Styled.Divider />}
287289

288290
{profile.link.totalSize > 0 && (
289291
<Styled.Section>

0 commit comments

Comments
 (0)