Skip to content

Commit

Permalink
Fix merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Copons committed Mar 19, 2021
1 parent 9ee2758 commit e550189
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
function NavigationToggle( { icon, isOpen } ) {
const { isRequestingSiteIcon, templateType, siteIconUrl } = useSelect(
( select ) => {
const { getTemplateType } = select( editSiteStore );
const { getEditedPostType } = select( editSiteStore );
const { getEntityRecord, isResolving } = select( coreDataStore );
const siteData =
getEntityRecord( 'root', '__unstableBase', undefined ) || {};
Expand All @@ -30,7 +30,7 @@ function NavigationToggle( { icon, isOpen } ) {
'__unstableBase',
undefined,
] ),
templateType: getTemplateType(),
templateType: getEditedPostType(),
siteIconUrl: siteData.site_icon_url,
};
},
Expand Down

0 comments on commit e550189

Please sign in to comment.