Skip to content

Commit

Permalink
Default assignment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
samwisekind committed Sep 17, 2024
1 parent b78e33a commit 9c676c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ const Page: NextPage<PageProps> = ({
</li>
<li className={styles['info-item-age']}>
<b>Age (Years)</b>
{age ? age : <Unknown />}
{age ?? <Unknown />}
</li>
<li className={styles['info-item-sex']}>
<b>Sex</b>
Expand Down

0 comments on commit 9c676c5

Please sign in to comment.