From d9d5f91fbfb3990927c630e4e1259ff6fe12d4cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20Hr=C3=A1ch?= Date: Tue, 4 Feb 2025 12:24:30 +0100 Subject: [PATCH] fix(suite): set destination tag as enabled by default --- suite-common/wallet-utils/src/sendFormUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suite-common/wallet-utils/src/sendFormUtils.ts b/suite-common/wallet-utils/src/sendFormUtils.ts index 9377b05b5bd..397dad48701 100644 --- a/suite-common/wallet-utils/src/sendFormUtils.ts +++ b/suite-common/wallet-utils/src/sendFormUtils.ts @@ -432,7 +432,7 @@ export const restoreOrigOutputsOrder = ( export const getDefaultValues = (currency: Output['currency']): FormState => ({ ...DEFAULT_VALUES, - options: ['broadcast'], + options: ['broadcast', 'rippleDestinationTag'], outputs: [{ ...DEFAULT_PAYMENT, currency }], selectedUtxos: [], });