Skip to content

Commit

Permalink
fix: update DevCard component first contribution date format (#1322)
Browse files Browse the repository at this point in the history
  • Loading branch information
babblebey committed Jun 30, 2023
1 parent 9275dfe commit 951945c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/molecules/DevCard/dev-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,9 @@ export default function DevCard(props: DevCardProps) {
{props.age !== undefined && (
<div className="flex items-center">
<GiftIcon className="w-3 h-3 mr-1" />
<div className="flex text-xs">{props.age}d</div>
<div className="flex text-xs">
{getRelativeDays(props.age)}
</div>
</div>
)}
</div>
Expand Down

0 comments on commit 951945c

Please sign in to comment.