Skip to content

Commit 5c95f78

Browse files
committed
fix: remove address placeholder
1 parent 3effb83 commit 5c95f78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/screens/Transfer/ExternalNode/Confirm.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ const ExternalConfirm = ({
3636

3737
useFocusEffect(
3838
useCallback(() => {
39-
// Using a placeholder address here to enable the FeeCustom screen to function properly.
39+
// Using an empty address here to enable the FeeCustom screen to function properly.
4040
// The actual funding address will be updated later in createFundedChannel.
4141
updateBeignetSendTransaction({
42-
outputs: [{ address: 'xxx', value: localBalance, index: 0 }],
42+
outputs: [{ address: '', value: localBalance, index: 0 }],
4343
});
4444
}, [localBalance]),
4545
);

0 commit comments

Comments
 (0)