Skip to content

Commit

Permalink
Merge pull request #93 from modern-agile-team/bugFix/#92/not_props
Browse files Browse the repository at this point in the history
프롭스 전달 수정
  • Loading branch information
rhehfl authored Dec 20, 2024
2 parents 71f875a + 798ac4d commit fb4f54a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/profile/Profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default function Profile() {
<globalS.Layout>
<S.ProfileSection>
<div>
<ProfileImage />
<ProfileImage isIcon={false} />
<S.UserNameLabel>유저 이름</S.UserNameLabel>
<S.JoinDateLabel>2024.10.01</S.JoinDateLabel>
</div>
Expand Down
6 changes: 5 additions & 1 deletion src/pages/store/Store.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ export default function Store() {
<S.Button>내가 구매한 아이템</S.Button>
<S.Button>초기화</S.Button>
</div>
{itemQuery === 'profile' ? <ProfileImage /> : <MyCharacter />}
{itemQuery === 'profile' ? (
<ProfileImage isIcon={false} />
) : (
<MyCharacter />
)}
</S.MyCharacterSection>
<S.StoreItemListSection>
<S.FilterListContainer>
Expand Down

0 comments on commit fb4f54a

Please sign in to comment.