Bluesky app fork with some witchin' additions 💫

scope enable/disable of keyboard controller in composer to only android (#4412)

authored by hailey.at and committed by

GitHub fefae273 2540616f

+1 -1
+1 -1
src/view/com/composer/Composer.tsx
··· 134 134 // See https://github.com/bluesky-social/social-app/pull/4399 135 135 const {setEnabled} = useKeyboardContext() 136 136 React.useEffect(() => { 137 + if (!isAndroid) return 137 138 setEnabled(false) 138 - 139 139 return () => { 140 140 setEnabled(true) 141 141 }