tangled
alpha
login
or
join now
robinwobin.dev
/
witchsky.app
forked from
jollywhoppers.com/witchsky.app
0
fork
atom
Bluesky app fork with some witchin' additions 💫
0
fork
atom
overview
issues
pulls
pipelines
Fix oopsie (#3538)
authored by
danabra.mov
and committed by
GitHub
2 years ago
2164d322
228d947a
+1
1 changed file
expand all
collapse all
unified
split
src
components
ProfileHoverCard
index.web.tsx
+1
src/components/ProfileHoverCard/index.web.tsx
···
74
74
const prefetchedProfile = React.useRef(false)
75
75
const prefetchIfNeeded = React.useCallback(async () => {
76
76
if (!prefetchedProfile.current) {
77
77
+
prefetchedProfile.current = true
77
78
prefetchProfileQuery(props.did)
78
79
}
79
80
}, [prefetchProfileQuery, props.did])