[지라이슈없음] 결제가능상품 QRCode URL 변경(QRCode 스캔 시 ShopTime 앱으로 이동시킬 수 있는 URL로 변경)

This commit is contained in:
고동영
2024-11-19 13:50:44 +09:00
parent 81d761ca94
commit 31d075b2b3
3 changed files with 3 additions and 27 deletions

View File

@@ -7,7 +7,6 @@ import { scaleH, scaleW } from "../../utils/helperMethods";
export default function TQRCode({
ariaLabel,
isBillingProductVisible,
text,
width = "128",
height = "128",
@@ -44,9 +43,7 @@ export default function TQRCode({
}
const qrcode = new window.QRCode(qrcodeRef.current, {
text: isBillingProductVisible
? text
: `${text}&entryMenu=${encodeEntryMenu}&nowMenu=${encodedNowMenu}&idx=${idx}`,
text: `${text}&entryMenu=${encodeEntryMenu}&nowMenu=${encodedNowMenu}&idx=${idx}`,
width: scaleW(width),
height: scaleH(height),
correctLevel: window.QRCode.CorrectLevel.L,