diff --git a/src/app/features/psbt-signer/components/psbt-request-sighash-warning-label.tsx b/src/app/features/psbt-signer/components/psbt-request-sighash-warning-label.tsx index b69c18efd57..9eb16180a6a 100644 --- a/src/app/features/psbt-signer/components/psbt-request-sighash-warning-label.tsx +++ b/src/app/features/psbt-signer/components/psbt-request-sighash-warning-label.tsx @@ -1,11 +1,13 @@ import { WarningLabel } from '@app/components/warning-label'; -export function PsbtRequestSighashWarningLabel() { +interface PsbtRequestSighashWarningLabelProps { + origin: string; +} +export function PsbtRequestSighashWarningLabel({ origin }: PsbtRequestSighashWarningLabelProps) { return ( - The details you see here are not guaranteed. Be sure to fully trust your counterparty, who can - later modify this transaction to send or receive other assets from your account, and possibly - even drain it. + The details of this transaction are not guaranteed and could be modified later. Continue only + if you trust {origin} ); } diff --git a/src/app/features/psbt-signer/psbt-signer.tsx b/src/app/features/psbt-signer/psbt-signer.tsx index d1d53249425..0b59788e404 100644 --- a/src/app/features/psbt-signer/psbt-signer.tsx +++ b/src/app/features/psbt-signer/psbt-signer.tsx @@ -98,7 +98,7 @@ export function PsbtSigner(props: PsbtSignerProps) { - {isPsbtMutable ? : null} + {isPsbtMutable ? : null}