We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c77dd1a commit f3a60caCopy full SHA for f3a60ca
app/components/Nav/Main/index.js
@@ -95,6 +95,7 @@ import {
95
import { useNetworkSelection } from '../../hooks/useNetworkSelection/useNetworkSelection';
96
import { useIsOnBridgeRoute } from '../../UI/Bridge/hooks/useIsOnBridgeRoute';
97
import { CardVerification } from '../../UI/Card/sdk';
98
+import { isE2E } from '../../../util/test/utils';
99
100
const Stack = createStackNavigator();
101
@@ -190,7 +191,7 @@ const Main = (props) => {
190
191
192
// If the app is now in background, we need to start
193
// the background timer, which is less intense
- if (backgroundMode.current) {
194
+ if (backgroundMode.current && !isE2E) {
195
removeNotVisibleNotifications();
196
197
BackgroundTimer.runBackgroundTimer(async () => {
0 commit comments