fix nested <a> starterPackCard

This commit is contained in:
Oleksii Bulenok
2026-08-24 18:15:42 +02:00
parent c0e1eb570c
commit cc8516ad2a
@@ -11,9 +11,9 @@ import {useSession} from '#/state/session'
import {LoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder'
import {UserAvatar} from '#/view/com/util/UserAvatar'
import {atoms as a, useBreakpoints, useTheme, web} from '#/alf'
import {ButtonText} from '#/components/Button'
import {Button, ButtonText} from '#/components/Button'
import {PlusSmall_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus'
import {Link} from '#/components/Link'
import {Link, useLink} from '#/components/Link'
import {MediaInsetBorder} from '#/components/MediaInsetBorder'
import {useStarterPackLink} from '#/components/StarterPack/StarterPackCard'
import {SubtleHover} from '#/components/SubtleHover'
@@ -33,6 +33,15 @@ export function StarterPackCard({
const {currentAccount} = useSession()
const {gtPhone} = useBreakpoints()
const link = useStarterPackLink({view})
const openPack = useLink({
to: link.to,
displayText: link.label,
onPress: () => {
link.precache()
onPress?.()
},
})
const record = view.record
const isOwnStarterPack = view.creator?.did === currentAccount?.did
@@ -105,13 +114,13 @@ export function StarterPackCard({
: _(msg`By ${sanitizeHandle(view.creator.handle, '@')}`)}
</Text>
</View>
<Link
to={link.to}
<Button
label={link.label}
onHoverIn={link.precache}
onPress={() => {
link.precache()
onPress?.()
onPress={e => {
// don't let the press reach the surrounding card link
e.stopPropagation()
openPack.onPress(e)
}}
variant="solid"
color="secondary"
@@ -120,7 +129,7 @@ export function StarterPackCard({
<ButtonText>
<Trans>Open pack</Trans>
</ButtonText>
</Link>
</Button>
</View>
</View>
</>