Bluesky app fork with some witchin' additions 💫

small focus fix

+4
+4
src/components/PdsBadge.tsx
··· 5 5 import {usePdsLabelEnabled, usePdsLabelHideBskyPds} from '#/state/preferences/pds-label' 6 6 import {usePdsLabelQuery} from '#/state/queries/pds-label' 7 7 import {atoms as a, useBreakpoints} from '#/alf' 8 + import {IS_WEB} from '#/env' 8 9 import {Button} from '#/components/Button' 9 10 import * as Dialog from '#/components/Dialog' 10 11 import {FaviconOrGlobe, PdsDialog} from '#/components/PdsDialog' ··· 89 90 onPress={evt => { 90 91 evt.preventDefault() 91 92 dialogControl.open() 93 + if (IS_WEB) { 94 + ;(document.activeElement as HTMLElement | null)?.blur() 95 + } 92 96 }}> 93 97 {({hovered}) => ( 94 98 <View