qr rolling 텍스트 줄바꿈 수정

This commit is contained in:
opacity@t-win.kr
2025-08-12 12:13:39 +09:00
parent a115c7d27d
commit 4534582f2f
2 changed files with 3 additions and 3 deletions

View File

@@ -232,7 +232,7 @@
"OPTION": "(need for transfer)OPTION", "OPTION": "(need for transfer)OPTION",
"There are no themes available": "Es sind keine Artikel verfügbar", "There are no themes available": "Es sind keine Artikel verfügbar",
"The event information has not been registered": "(need for transfer) The event information has not been registered", "The event information has not been registered": "(need for transfer) The event information has not been registered",
"Scan QR": "QR-Code scannen", "Scan QR": "QR-Code \nscannen",
"with your phone, Check Product": "mit Ihrem Handy, Produkt prüfen", "with your phone, Check Product": "mit Ihrem Handy, Produkt prüfen",
"info & Purchase easily": "Informationen & Einkauf leicht gemacht" "info & Purchase easily": "Informationen & Einkauf leicht gemacht"
} }

View File

@@ -315,11 +315,11 @@ export default function UnableOption({
if (isShowQRCode) { if (isShowQRCode) {
timerRef.current = setTimeout(() => { timerRef.current = setTimeout(() => {
setIsShowQRCode(false); setIsShowQRCode(false);
}, 10000); }, 0);
} else { } else {
timerRef.current = setTimeout(() => { timerRef.current = setTimeout(() => {
setIsShowQRCode(true); setIsShowQRCode(true);
}, 5000); }, 100000);
} }
}; };