ios adult content link fix 🤦 (#2845)

zio/stable
Hailey 2024-02-12 11:16:56 -08:00 committed by GitHub
parent 2ecfd106e8
commit 9301ae6830
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import React from 'react' import React from 'react'
import {LabelPreference} from '@atproto/api' import {LabelPreference} from '@atproto/api'
import {StyleSheet, Pressable, View} from 'react-native' import {StyleSheet, Pressable, View, Linking} from 'react-native'
import LinearGradient from 'react-native-linear-gradient' import LinearGradient from 'react-native-linear-gradient'
import {ScrollView} from './util' import {ScrollView} from './util'
import {s, colors, gradients} from 'lib/styles' import {s, colors, gradients} from 'lib/styles'
@ -129,6 +129,10 @@ function AdultContentEnabledPref() {
} }
}, [variables, preferences, mutate, _]) }, [variables, preferences, mutate, _])
const onAdultContentLinkPress = React.useCallback(() => {
Linking.openURL('https://bsky.app/')
}, [])
return ( return (
<View style={s.mb10}> <View style={s.mb10}>
{isIOS ? ( {isIOS ? (
@ -138,8 +142,9 @@ function AdultContentEnabledPref() {
Adult content can only be enabled via the Web at{' '} Adult content can only be enabled via the Web at{' '}
<TextLink <TextLink
style={pal.link} style={pal.link}
href="https://bsky.app" href=""
text="bsky.app" text="bsky.app"
onPress={onAdultContentLinkPress}
/> />
. .
</Trans> </Trans>