From 9c982c998f8c817aebd8eeb2aea3a88f59d724ba Mon Sep 17 00:00:00 2001 From: Reckless_Satoshi Date: Fri, 10 Mar 2023 10:15:03 -0800 Subject: [PATCH] Fix textbox invoice string not changing for escrow --- frontend/src/components/TradeBox/Prompts/LockInvoice.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/TradeBox/Prompts/LockInvoice.tsx b/frontend/src/components/TradeBox/Prompts/LockInvoice.tsx index a2886aeb..374173ef 100644 --- a/frontend/src/components/TradeBox/Prompts/LockInvoice.tsx +++ b/frontend/src/components/TradeBox/Prompts/LockInvoice.tsx @@ -116,7 +116,7 @@ export const LockInvoicePrompt = ({ order, concept }: LockInvoicePromptProps): J hiddenLabel variant='standard' size='small' - defaultValue={invoice ?? 'Undefined: BOLT11 invoice not received'} + value={invoice ?? 'Undefined: BOLT11 invoice not received'} disabled={true} helperText={helperText} color='secondary'