mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

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

fix select triggers on ios safari (#8343)

authored by samuel.fm and committed by

GitHub 0edd3bd3 e01b2470

+4 -1
+1
src/components/Select/index.web.tsx
··· 73 73 }, 74 74 props: { 75 75 ...props, 76 + onPress: props.onClick, 76 77 onFocus: onFocus, 77 78 onBlur: onBlur, 78 79 onMouseEnter,
+3 -1
src/components/Select/types.ts
··· 53 53 ['aria-controls']?: string 54 54 ['aria-haspopup']?: boolean 55 55 ['aria-expanded']?: AccessibilityProps['aria-expanded'] 56 - onPress: () => void 56 + onClick: () => void 57 + onPointerDown: () => void 58 + onKeyDown: () => void 57 59 } 58 60 59 61 export type TriggerProps = {