diff options
| author | Pinapelz <yukais@pinapelz.com> | 2023-11-26 12:48:42 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2023-11-26 12:48:42 -0800 |
| commit | 68cba8a186ef8f641562066d73f85bd53c240dd0 (patch) | |
| tree | d7ed0dda4f9e40348d0736ddbdde94cdd1499813 /src/components/channel-card.tsx | |
| parent | cf108e9e7272641f35be20e35635985a69e042c7 (diff) | |
bump dependency and minor style changes
Diffstat (limited to 'src/components/channel-card.tsx')
| -rw-r--r-- | src/components/channel-card.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/channel-card.tsx b/src/components/channel-card.tsx index 58b2b5c..599c48a 100644 --- a/src/components/channel-card.tsx +++ b/src/components/channel-card.tsx @@ -40,7 +40,7 @@ export function ChannelCard(props: ChannelCardProps) { </div> <div className="flex flex-col items-center"> <span className="text-l text-gray-600">Next Milestone</span> - <span className="font-semibold">{nextMilestone.toLocaleString()}</span> + <span className="font-semibold">{Number(nextMilestone).toLocaleString()}</span> <div className="flex justify-center items-center"> <span className="text-sm text-gray-600 px-2">{nextMilestoneDays} days</span> <span className="text-sm text-gray-600 px-2">{nextMilestoneDate}</span> |
