Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

check `maxTouchPoints` is greater than 1, not zero (#4158)

authored by

Hailey and committed by
GitHub
630b9b77 7334e9fd

+1 -1
+1 -1
src/components/ProfileHoverCard/index.web.tsx
··· 43 43 }), 44 44 ] 45 45 46 - const isTouchDevice = 'ontouchstart' in window || navigator.maxTouchPoints > 0 46 + const isTouchDevice = 'ontouchstart' in window || navigator.maxTouchPoints > 1 47 47 48 48 export function ProfileHoverCard(props: ProfileHoverCardProps) { 49 49 if (props.disable || isTouchDevice) {