diff --git a/packages/app-mobile/utils/lockToSingleInstance.ts b/packages/app-mobile/utils/lockToSingleInstance.ts index c6e85fa042..89fb1e07a4 100644 --- a/packages/app-mobile/utils/lockToSingleInstance.ts +++ b/packages/app-mobile/utils/lockToSingleInstance.ts @@ -3,6 +3,7 @@ import { Platform } from 'react-native'; const lockToSingleInstance = async () => { if (Platform.OS !== 'web') return; + if (__DEV__) return; const channel = new BroadcastChannel('single-instance-lock'); channel.postMessage('app-opened');