mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-18 20:21:35 +00:00
uppercase invoices on QR codes
This commit is contained in:
parent
e5e22727ea
commit
5fa8031b30
@ -101,7 +101,7 @@ export const LockInvoicePrompt = ({ order, concept }: LockInvoicePromptProps): J
|
|||||||
<QRCode
|
<QRCode
|
||||||
bgColor={'rgba(255, 255, 255, 0)'}
|
bgColor={'rgba(255, 255, 255, 0)'}
|
||||||
fgColor={settings.lightQRs ? '#000000' : theme.palette.text.primary}
|
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}
|
size={theme.typography.fontSize * 21.8}
|
||||||
onClick={handleClickQR}
|
onClick={handleClickQR}
|
||||||
/>
|
/>
|
||||||
|
Loading…
Reference in New Issue
Block a user