Skip to content

Commit

Permalink
Merge pull request #1517 from fiatjaf/patch-1
Browse files Browse the repository at this point in the history
uppercase invoices on QR codes
  • Loading branch information
KoalaSat authored Oct 8, 2024
2 parents e5e2272 + 5fa8031 commit d4b3a70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/TradeBox/Prompts/LockInvoice.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}
/>
Expand Down

0 comments on commit d4b3a70

Please sign in to comment.