Merge pull request #1517 from fiatjaf/patch-1
Some checks failed
Sync lnproxy relays / sync (push) Has been cancelled

uppercase invoices on QR codes
This commit is contained in:
KoalaSat 2024-10-08 12:18:37 +00:00 committed by GitHub
commit d4b3a708b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -101,7 +101,7 @@ export const LockInvoicePrompt = ({ order, concept }: LockInvoicePromptProps): J
<QRCode
bgColor={'rgba(255, 255, 255, 0)'}
fgColor={settings.lightQRs ? '#000000' : theme.palette.text.primary}
value={invoice ?? 'Undefined: BOLT11 invoice not received'}
value={invoice?.toUpperCase() ?? 'Undefined: BOLT11 invoice not received'}
size={theme.typography.fontSize * 21.8}
onClick={handleClickQR}
/>