this repo has no description
0
fork

Configure Feed

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

Fix compose button not working when clicked

+1 -1
+1 -1
src/components/compose-button.jsx
··· 55 55 function handleButton(e) { 56 56 // useKey will even listen to Shift 57 57 // e.g. press Shift (without c) will trigger this 😱 58 - if (e.key.toLowerCase() !== 'c') return; 58 + if (e.key && e.key.toLowerCase() !== 'c') return; 59 59 60 60 if (snapStates.composerState.minimized) { 61 61 states.composerState.minimized = false;