From d7f5c29061c677a60fe1b5e4e8ad6defc06c5188 Mon Sep 17 00:00:00 2001 From: HOUNKPATIN Kafui Terry Chris <114687214+HKafuiEPI@users.noreply.github.com> Date: Tue, 29 Jul 2025 16:49:41 +0100 Subject: [PATCH] Update linking.ts --- src/linking.ts | 10 ---------- 1 file changed, 10 deletions(-) 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;