[TQRCode] idx 추가

This commit is contained in:
고동영
2024-06-11 12:58:45 +09:00
parent 3fd2883ed6
commit 8f09a58b8d

View File

@@ -29,7 +29,7 @@ export default function TQRCode({ ariaLabel,text, menu, width = "128", height =
const qrcode = new window.QRCode(qrcodeRef.current, {
text: menu
? `${text}&nowMenu=${menu}&dvcIndex=${deviceInfo.dvcIndex}`
? `${text}&nowMenu=${menu}&idx=${deviceInfo.dvcIndex}`
: text,
width: scaleW(width),
height: scaleH(height),