Skip to content

Commit

Permalink
fixup! feat(suite-native): ripple asks for destination tag by default…
Browse files Browse the repository at this point in the history
… in send
  • Loading branch information
vytick committed Feb 11, 2025
1 parent cee7ba0 commit 6e7d691
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion suite-native/module-send/src/screens/SendOutputsScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ export const SendOutputsScreen = ({
decimals: tokenInfo?.decimals ?? network?.decimals,
isTaprootAvailable: !deviceUnavailableCapabilities?.taproot,
},
defaultValues: getDefaultValues({ tokenContract }),
defaultValues: {
...getDefaultValues({ tokenContract }),
enableDestinationTagValidation: network?.networkType === 'ripple',
},
});

const {
Expand Down

0 comments on commit 6e7d691

Please sign in to comment.