Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { store as blockEditorStore } from '../../../store';
export function useEventHandlers( { clientId, isSelected } ) {
const { getBlockRootClientId, getBlockIndex } =
useSelect( blockEditorStore );
const { insertDefaultBlock, removeBlock } = useDispatch( blockEditorStore );
const { insertAfterBlock, removeBlock } = useDispatch( blockEditorStore );

return useRefEffect(
( node ) => {
Expand Down Expand Up @@ -57,11 +57,7 @@ export function useEventHandlers( { clientId, isSelected } ) {
event.preventDefault();

if ( keyCode === ENTER ) {
insertDefaultBlock(
{},
getBlockRootClientId( clientId ),
getBlockIndex( clientId ) + 1
);
insertAfterBlock( clientId );
} else {
removeBlock( clientId );
}
Expand Down Expand Up @@ -90,7 +86,7 @@ export function useEventHandlers( { clientId, isSelected } ) {
isSelected,
getBlockRootClientId,
getBlockIndex,
insertDefaultBlock,
insertAfterBlock,
removeBlock,
]
);
Expand Down
Loading