diff --git a/web/src/pages/Presale.tsx b/web/src/pages/Presale.tsx index 1ed5d214..b3d1c345 100644 --- a/web/src/pages/Presale.tsx +++ b/web/src/pages/Presale.tsx @@ -150,7 +150,7 @@ export default function Presale() { const calculatePezReceived = (wusdtAmount: string): number => { const amount = parseFloat(wusdtAmount); - return isNaN(amount) ? 0 : amount * 100; // 1 wUSDT = 100 PEZ + return isNaN(amount) ? 0 : amount * 20; // 1 wUSDT = 20 PEZ }; const progressPercentage = () => { @@ -182,7 +182,7 @@ export default function Presale() {