Skip to content

Commit e4536e2

Browse files
committed
feat(suite-native): send ethereum like coins feature flag
1 parent 8673770 commit e4536e2

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

suite-native/intl/src/en.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -941,7 +941,7 @@ export const en = {
941941
},
942942
outputs: {
943943
correctNetworkMessage:
944-
'Make sure that you’re sending to an address on\u00A0{networkName} network. <link>Learn more</link>',
944+
'Make sure that you’re sending to an address\non {networkName} network. <link>Learn more</link>',
945945
tokenOfNetworkSheet: {
946946
title: 'You’re about to Send {tokenSymbol} that runs on {networkName} network.',
947947
body: {

suite-native/module-accounts-management/src/selectors.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ export const selectIsNetworkSendFlowEnabled = (
2929
FeatureFlag.IsEthereumSendEnabled,
3030
);
3131

32-
if (isEthereumSendEnabled && ['eth', 'etc', 'tsep', 'thol'].includes(networkSymbol))
33-
return true;
32+
if (isEthereumSendEnabled && networkType === 'ethereum') return true;
3433

3534
return false;
3635
};

suite-native/module-dev-utils/src/components/FeatureFlags.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { FeatureFlag as FeatureFlagEnum, useFeatureFlag } from '@suite-native/fe
44
const featureFlagsTitleMap = {
55
[FeatureFlagEnum.IsDeviceConnectEnabled]: 'Connect device',
66
[FeatureFlagEnum.IsBitcoinLikeSendEnabled]: 'Bitcoin-like coins send',
7-
[FeatureFlagEnum.IsEthereumSendEnabled]: 'Ethereum send',
7+
[FeatureFlagEnum.IsEthereumSendEnabled]: 'Ethereum-like coins send',
88
[FeatureFlagEnum.IsRegtestEnabled]: 'Regtest',
99
[FeatureFlagEnum.IsPolygonEnabled]: 'Polygon',
1010
[FeatureFlagEnum.IsBscEnabled]: 'BNB Smart Chain',

0 commit comments

Comments
 (0)