This commit is contained in:
Hailey
2024-10-02 10:58:16 -07:00
parent b5a5113678
commit 349b8b7045
+3 -3
View File
@@ -1,5 +1,4 @@
import React from 'react'
import {BlueskyBottomSheetPressable} from '@haileyok/bluesky-bottom-sheet'
import {StackActions, useNavigation} from '@react-navigation/native'
import {NavigationProp} from '#/lib/routes/types'
@@ -7,6 +6,7 @@ import {flatten, useTheme} from '#/alf'
import {useDialogContext} from '#/components/Dialog'
import {useInteractionState} from '#/components/hooks/useInteractionState'
import {InlineLinkProps, useLink} from '#/components/Link'
import {NormalizedPressable} from '#/components/NormalizedPressable'
import {Text} from '#/components/Typography'
import {router} from '#/routes'
@@ -64,7 +64,7 @@ export function BottomSheetInlineLinkText({
// eslint-disable-next-line bsky-internal/avoid-unwrapped-text
return (
<BlueskyBottomSheetPressable
<NormalizedPressable
onPress={onPress}
onLongPress={onLongPress}
onPressIn={onPressIn}
@@ -87,6 +87,6 @@ export function BottomSheetInlineLinkText({
]}>
{children}
</Text>
</BlueskyBottomSheetPressable>
</NormalizedPressable>
)
}