Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
samwisekind committed Jul 1, 2024
1 parent d9c9879 commit 61c43dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/research/catalogues/bottlenose-dolphin/[slug].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const Unknown = () => (
title="Catalogue data is not currently available for this entry and may be updated in the future."
className={styles.unknown}
>
<span>Unknown</span>
<span>UNKNOWN</span>
</span>
);

Expand Down Expand Up @@ -217,7 +217,7 @@ const Page: NextPage<PageProps> = ({
</li>
<li>
<b>First Seen</b>
{firstSeen ? formatDateMonth(firstSeen) : <Unknown />}
{firstSeen ? formatDateMonth(firstSeen).toUpperCase() : <Unknown />}
</li>
<li>
<b>Birth Year</b>
Expand All @@ -236,7 +236,7 @@ const Page: NextPage<PageProps> = ({
Total Number Of Calves
<Tooltip text="Total number of calves as identified by CRRU and AULFS" />
</b>
TBA
<Unknown />
</li>
</ul>

Expand Down

0 comments on commit 61c43dd

Please sign in to comment.