diff options
author | Hailey <me@haileyok.com> | 2025-03-17 15:13:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-17 15:13:34 -0700 |
commit | aa86a8619c4642ae268dcd01439b67102a101848 (patch) | |
tree | 631395968c87019a44924c1af468a758957ee796 /src | |
parent | c612fca32a69ed5af769a7c5851598f35d14d1ee (diff) | |
download | voidsky-aa86a8619c4642ae268dcd01439b67102a101848.tar.zst |
remove from iab (#8017)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/modals/InAppBrowserConsent.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/modals/InAppBrowserConsent.tsx b/src/view/com/modals/InAppBrowserConsent.tsx index 7178ff2f2..105edfbc6 100644 --- a/src/view/com/modals/InAppBrowserConsent.tsx +++ b/src/view/com/modals/InAppBrowserConsent.tsx @@ -24,13 +24,13 @@ export function Component({href}: {href: string}) { const onUseIAB = React.useCallback(() => { setInAppBrowser(true) closeModal() - openLink(href, true, true) + openLink(href, true) }, [closeModal, setInAppBrowser, href, openLink]) const onUseLinking = React.useCallback(() => { setInAppBrowser(false) closeModal() - openLink(href, false, true) + openLink(href, false) }, [closeModal, setInAppBrowser, href, openLink]) return ( |