Skip to content

Commit

Permalink
Update: Code Quality: Remove some block-editor store references from …
Browse files Browse the repository at this point in the history
…block-editor store.
  • Loading branch information
jorgefilipecosta committed Feb 28, 2019
1 parent 17d509b commit c136f0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/block-editor/src/store/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export function selectBlock( clientId, initialPosition = null ) {
*/
export function* selectPreviousBlock( clientId ) {
const previousBlockClientId = yield select(
'core/editor',
'core/block-editor',
'getPreviousBlockClientId',
clientId
);
Expand All @@ -123,7 +123,7 @@ export function* selectPreviousBlock( clientId ) {
*/
export function* selectNextBlock( clientId ) {
const nextBlockClientId = yield select(
'core/editor',
'core/block-editor',
'getNextBlockClientId',
clientId
);
Expand Down

0 comments on commit c136f0f

Please sign in to comment.