diff --git a/app/components/Nav/Main/index.js b/app/components/Nav/Main/index.js index 98384824f71b..514cac8bb44f 100644 --- a/app/components/Nav/Main/index.js +++ b/app/components/Nav/Main/index.js @@ -95,6 +95,7 @@ import { import { useNetworkSelection } from '../../hooks/useNetworkSelection/useNetworkSelection'; import { useIsOnBridgeRoute } from '../../UI/Bridge/hooks/useIsOnBridgeRoute'; import { CardVerification } from '../../UI/Card/sdk'; +import { isE2E } from '../../../util/test/utils'; const Stack = createStackNavigator(); @@ -193,9 +194,11 @@ const Main = (props) => { if (backgroundMode.current) { removeNotVisibleNotifications(); - BackgroundTimer.runBackgroundTimer(async () => { - await updateIncomingTransactions(); - }, AppConstants.TX_CHECK_BACKGROUND_FREQUENCY); + if (!isE2E) { + BackgroundTimer.runBackgroundTimer(async () => { + await updateIncomingTransactions(); + }, AppConstants.TX_CHECK_BACKGROUND_FREQUENCY); + } } }, [backgroundMode, removeNotVisibleNotifications],