diff --git a/src/views/studio/modals/user-projects-tile.jsx b/src/views/studio/modals/user-projects-tile.jsx index 762899b0f..cf49a1999 100644 --- a/src/views/studio/modals/user-projects-tile.jsx +++ b/src/views/studio/modals/user-projects-tile.jsx @@ -29,7 +29,12 @@ const UserProjectsTile = ({id, title, image, inStudio, onAdd, onRemove}) => { 'mod-mutating': submitting })} onClick={toggle} - onKeyDown={e => e.key === 'Enter' && toggle()} + onKeyDown={e => { + if (e.key === 'Enter' || e.key === ' ') { + toggle(); + e.preventDefault(); + } + }} >