при переходе от оплаты тарифа с квиза на стр оплаты хаба сумма делится на 100
This commit is contained in:
parent
958f9f6655
commit
d4c0a77d7f
@ -6,7 +6,7 @@
|
|||||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<meta name="theme-color" content="#000000" />
|
<meta name="theme-color" content="#000000" />
|
||||||
<meta name="description" content="Web site created using create-react-app" />
|
<!-- <meta name="description" content=" тут описание текста-бирки " /> -->
|
||||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
|
@ -59,7 +59,7 @@ export default function Payment() {
|
|||||||
const fromSquiz = params.get("action")
|
const fromSquiz = params.get("action")
|
||||||
if (fromSquiz === "squizpay") {
|
if (fromSquiz === "squizpay") {
|
||||||
setIsFromSquiz(true)
|
setIsFromSquiz(true)
|
||||||
setPaymentValueField(params.get("dif") || "0")
|
setPaymentValueField((Number(params.get("dif") || "0") / 100).toString())
|
||||||
}
|
}
|
||||||
console.log(fromSquiz)
|
console.log(fromSquiz)
|
||||||
}, [])
|
}, [])
|
||||||
|
Loading…
Reference in New Issue
Block a user