diff --git a/src/linking.ts b/src/linking.ts index e3664b7..6ff75f9 100644 --- a/src/linking.ts +++ b/src/linking.ts @@ -3,16 +3,6 @@ import { WAVE_STORE_REDIRECT_URI, APP_STORE_REDIRECT_URI } from './typings'; export const launchWave = async (url: string): Promise => { try { - const canOpen = await Linking.canOpenURL(url); - if (canOpen) { - const storeUrl = - Platform.OS === 'ios' - ? APP_STORE_REDIRECT_URI - : WAVE_STORE_REDIRECT_URI; - await Linking.openURL(storeUrl); - return true; - } - await Linking.openURL(url); return true;