Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideSilva committed May 2, 2024
1 parent f3e47db commit 448b9ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web-app/app/_ui/project/token-metrics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const ProgressBar = ({
value: number;
}) => {
const valueInMillions = value / 1000_000;
const maxInMillions = formatEther(max) / 1000_000_000;
const maxInMillions = max / 1000_000;
const halfInMillions = maxInMillions / 2;
const currentRelativeValue = valueInMillions / maxInMillions;
const percentage = currentRelativeValue * 100;
Expand Down

0 comments on commit 448b9ac

Please sign in to comment.