Skip to content

Commit

Permalink
fix: fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
ooooorobo committed Sep 8, 2024
1 parent 07b2e9a commit 2847cfe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ export const IdealPartnerProfile = ({ profile }: { profile: IdealPartner }) => {
<div className={styles.Cell}>
<ProfileCellHeader title={'선호하는 연령대'} />
<span>
{profile.ageRange.min}-{profile.ageRange.max}
{profile.ageRange?.min}-{profile.ageRange?.max}
</span>
</div>
<div className={styles.Cell}>
<ProfileCellHeader title={'선호하는 키'} />
<span>
{profile.heightRange.min}-{profile.heightRange.max}
{profile.heightRange?.min}-{profile.heightRange?.max}
</span>
</div>
<div className={styles.Cell}>
Expand Down

0 comments on commit 2847cfe

Please sign in to comment.