This commit is contained in:
Nastya 2024-04-06 11:25:18 +03:00
parent 5d2d8396ca
commit 436f99a60d
2 changed files with 2 additions and 2 deletions

@ -15,7 +15,7 @@
"dependencies": { "dependencies": {
"@emotion/react": "^11.10.5", "@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5", "@emotion/styled": "^11.10.5",
"@frontend/kitui": "^1.0.76", "@frontend/kitui": "^1.0.78",
"@mui/icons-material": "^5.10.14", "@mui/icons-material": "^5.10.14",
"@mui/material": "^5.10.14", "@mui/material": "^5.10.14",
"@popperjs/core": "^2.11.8", "@popperjs/core": "^2.11.8",

@ -102,7 +102,7 @@ export default function Payment() {
fromSquiz, fromSquiz,
body: { body: {
type: selectedPaymentMethod, type: selectedPaymentMethod,
amount: Math.floor(Number(paymentValueField) * 100), amount: Math.floor(Number(paymentValueField)),
}, },
paymentPurpose: notEnoughMoneyAmount ? "paycart" : "replenishwallet", paymentPurpose: notEnoughMoneyAmount ? "paycart" : "replenishwallet",
}); });