diff --git a/ui/pages/Address.tsx b/ui/pages/Address.tsx
index 06e40b97a1..a1f08bc535 100644
--- a/ui/pages/Address.tsx
+++ b/ui/pages/Address.tsx
@@ -15,7 +15,6 @@ import AddressBlocksValidated from 'ui/address/AddressBlocksValidated';
import AddressCoinBalance from 'ui/address/AddressCoinBalance';
import AddressContract from 'ui/address/AddressContract';
import AddressDetails from 'ui/address/AddressDetails';
-import AddressInternalTxs from 'ui/address/AddressInternalTxs';
import AddressLogs from 'ui/address/AddressLogs';
import AddressTokens from 'ui/address/AddressTokens';
import AddressTokenTransfers from 'ui/address/AddressTokenTransfers';
@@ -94,12 +93,6 @@ const AddressPageContent = () => {
component: ,
subTabs: TOKEN_TABS,
},
- {
- id: 'internal_txns',
- title: 'Internal txns',
- count: addressTabsCountersQuery.data?.internal_txs_count,
- component: ,
- },
{
id: 'coin_balance_history',
title: 'Coin balance history',
diff --git a/ui/pages/Transaction.tsx b/ui/pages/Transaction.tsx
index dbb303a848..f5cab889c9 100644
--- a/ui/pages/Transaction.tsx
+++ b/ui/pages/Transaction.tsx
@@ -15,7 +15,7 @@ import TabsSkeleton from 'ui/shared/Tabs/TabsSkeleton';
import useTabIndexFromQuery from 'ui/shared/Tabs/useTabIndexFromQuery';
import TxDetails from 'ui/tx/TxDetails';
import TxDetailsWrapped from 'ui/tx/TxDetailsWrapped';
-import TxInternals from 'ui/tx/TxInternals';
+// import TxInternals from 'ui/tx/TxInternals';
import TxLogs from 'ui/tx/TxLogs';
import TxRawTrace from 'ui/tx/TxRawTrace';
import TxState from 'ui/tx/TxState';
@@ -46,7 +46,7 @@ const TransactionPageContent = () => {
{ id: 'wrapped', title: 'Regular tx details', component: } :
undefined,
{ id: 'token_transfers', title: 'Token transfers', component: },
- { id: 'internal', title: 'Internal txns', component: },
+ // { id: 'internal', title: 'Internal txns', component: },
{ id: 'logs', title: 'Logs', component: },
{ id: 'state', title: 'State', component: },
{ id: 'raw_trace', title: 'Raw trace', component: },