diff --git a/src/screens/Transfer/ExternalNode/Confirm.tsx b/src/screens/Transfer/ExternalNode/Confirm.tsx index 3828fa612..943842b92 100644 --- a/src/screens/Transfer/ExternalNode/Confirm.tsx +++ b/src/screens/Transfer/ExternalNode/Confirm.tsx @@ -36,10 +36,10 @@ const ExternalConfirm = ({ useFocusEffect( useCallback(() => { - // Using a placeholder address here to enable the FeeCustom screen to function properly. + // Using an empty address here to enable the FeeCustom screen to function properly. // The actual funding address will be updated later in createFundedChannel. updateBeignetSendTransaction({ - outputs: [{ address: 'xxx', value: localBalance, index: 0 }], + outputs: [{ address: '', value: localBalance, index: 0 }], }); }, [localBalance]), );