Skip to content

Commit

Permalink
hotfix: values parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
luistorres committed May 6, 2024
1 parent 58137e2 commit 49e15cd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/web-app/app/_ui/projects/project-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ const Upcoming = ({
endRegistration,
start,
}: TProjectSaleDetails) => {
const targetedRaise = usdRange(minTarget, maxTarget);
const targetedRaise = usdRange(
BigInt(formatEther(minTarget)),
BigInt(formatEther(maxTarget)),
);
const registerPeriod = shortDateRange(startRegistration, endRegistration);
const { days, hours, minutes, seconds } = useCountdown(start);

Expand Down

0 comments on commit 49e15cd

Please sign in to comment.