Skip to content

Commit

Permalink
fix: remove address placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyphillips committed Feb 13, 2025
1 parent 3effb83 commit 5c95f78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/screens/Transfer/ExternalNode/Confirm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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]),
);
Expand Down

0 comments on commit 5c95f78

Please sign in to comment.