Skip to content

Commit

Permalink
Sort out a rebase error
Browse files Browse the repository at this point in the history
  • Loading branch information
Copons committed Mar 22, 2021
1 parent f2fdc47 commit c89ff13
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,13 @@ import { store as editSiteStore } from '../../store';

export default function ListViewSidebar() {
const { clientIdsTree, selectedBlockClientIds } = useSelect( ( select ) => {
const { __unstableGetClientIdsTree, getSelectedBlockClientId } = select(
blockEditorStore
);
const {
__unstableGetClientIdsTree,
getSelectedBlockClientIds,
} = select( blockEditorStore );
return {
clientIdsTree: __unstableGetClientIdsTree(),
selectedBlockClientIds: getSelectedBlockClientId(),
selectedBlockClientIds: getSelectedBlockClientIds(),
};
} );
const { setIsListViewOpened } = useDispatch( editSiteStore );
Expand Down

0 comments on commit c89ff13

Please sign in to comment.