diff --git a/suite-native/accounts/src/components/AccountsList/AccountsListItem.tsx b/suite-native/accounts/src/components/AccountsList/AccountsListItem.tsx
index b1af487c4a7..7449257d763 100644
--- a/suite-native/accounts/src/components/AccountsList/AccountsListItem.tsx
+++ b/suite-native/accounts/src/components/AccountsList/AccountsListItem.tsx
@@ -88,7 +88,7 @@ export const AccountsListItem = ({
const icon = useMemo(
() =>
isNativeCoinOnly ? (
-
+
) : (
),
diff --git a/suite-native/module-accounts-management/src/components/AccountDetailScreenHeader.tsx b/suite-native/module-accounts-management/src/components/AccountDetailScreenHeader.tsx
index d0e5717a7eb..ac7b8bc942d 100644
--- a/suite-native/module-accounts-management/src/components/AccountDetailScreenHeader.tsx
+++ b/suite-native/module-accounts-management/src/components/AccountDetailScreenHeader.tsx
@@ -25,6 +25,24 @@ type AccountDetailNavigationProps = StackToStackCompositeNavigationProps<
RootStackParamList
>;
+const AccountDetailScreenHeaderContent = ({
+ accountLabel,
+ accountKey,
+}: AccountDetailScreenHeaderProps) => {
+ const symbol = useSelector((state: AccountsRootState) =>
+ selectAccountNetworkSymbol(state, accountKey),
+ )!;
+
+ return (
+
+
+
+ {accountLabel}
+
+
+ );
+};
+
export const AccountDetailScreenHeader = ({
accountLabel,
accountKey,
@@ -33,9 +51,6 @@ export const AccountDetailScreenHeader = ({
const route = useRoute>();
const { closeActionType } = route.params;
- const symbol = useSelector((state: AccountsRootState) =>
- selectAccountNetworkSymbol(state, accountKey),
- )!;
const handleSettingsNavigation = () => {
navigation.navigate(RootStackRoutes.AccountSettings, {
accountKey,
@@ -45,14 +60,10 @@ export const AccountDetailScreenHeader = ({
return (
-
- {accountLabel}
-
+
}
rightIcon={
{
-
+
diff --git a/suite-native/module-accounts-management/src/components/TransactionListHeader.tsx b/suite-native/module-accounts-management/src/components/TransactionListHeader.tsx
index 3ce6fb67616..d9aa2a2f468 100644
--- a/suite-native/module-accounts-management/src/components/TransactionListHeader.tsx
+++ b/suite-native/module-accounts-management/src/components/TransactionListHeader.tsx
@@ -25,8 +25,8 @@ import {
import { AccountDetailCryptoValue } from './AccountDetailCryptoValue';
import { AccountDetailGraph } from './AccountDetailGraph';
-import { selectIsNetworkSendFlowEnabled } from '../selectors';
import { CoinPriceCard } from './CoinPriceCard';
+import { selectIsNetworkSendFlowEnabled } from '../selectors';
type TransactionListHeaderProps = {
accountKey: AccountKey;
diff --git a/suite-native/transactions/src/components/TransactionDetail/TransactionDetailAddressesSection.tsx b/suite-native/transactions/src/components/TransactionDetail/TransactionDetailAddressesSection.tsx
index 60c6e3f0cf3..94fce828f62 100644
--- a/suite-native/transactions/src/components/TransactionDetail/TransactionDetailAddressesSection.tsx
+++ b/suite-native/transactions/src/components/TransactionDetail/TransactionDetailAddressesSection.tsx
@@ -113,7 +113,6 @@ export const TransactionDetailAddressesSection = ({
symbol={symbol}
contractAddress={contractAddress}
size="small"
- preferNetworkSymbol={false}
/>
)}