diff --git a/src/app/features/psbt-signer/components/psbt-inputs-and-outputs/components/psbt-output-list/components/psbt-output-item.tsx b/src/app/features/psbt-signer/components/psbt-inputs-and-outputs/components/psbt-output-list/components/psbt-output-item.tsx index 537bd4741d6..744f0d36925 100644 --- a/src/app/features/psbt-signer/components/psbt-inputs-and-outputs/components/psbt-output-list/components/psbt-output-item.tsx +++ b/src/app/features/psbt-signer/components/psbt-inputs-and-outputs/components/psbt-output-list/components/psbt-output-item.tsx @@ -11,6 +11,10 @@ import { PsbtInputOutputItemLayout } from '../../psbt-input-output-item.layout'; const pillHoverLabel = 'Value you’ll receive after this transaction is complete.'; export function PsbtOutputItem({ output }: { output: PsbtOutput }) { + const isUnknownAddress = output.address === 'unknown'; + + if (isUnknownAddress) return null; + return (