Skip to content

Commit

Permalink
Update home template icon (#52075)
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskoster authored Jun 28, 2023
1 parent c5d477a commit 56e18f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import {
page,
plus,
pin,
postList,
verse,
search,
tag,
} from '@wordpress/icons';
Expand Down Expand Up @@ -78,7 +78,7 @@ const DEFAULT_TEMPLATE_SLUGS = [

const TEMPLATE_ICONS = {
'front-page': home,
home: postList,
home: verse,
single: pin,
page,
archive,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { __ } from '@wordpress/i18n';
import { useEntityRecords, store as coreStore } from '@wordpress/core-data';
import { decodeEntities } from '@wordpress/html-entities';
import { privateApis as routerPrivateApis } from '@wordpress/router';
import { layout, page, home, loop, plus } from '@wordpress/icons';
import { layout, page, home, verse, plus } from '@wordpress/icons';
import { useSelect } from '@wordpress/data';

/**
Expand Down Expand Up @@ -159,7 +159,7 @@ export default function SidebarNavigationScreenPages() {
itemIcon = home;
break;
case postsPage:
itemIcon = loop;
itemIcon = verse;
break;
default:
itemIcon = page;
Expand Down

0 comments on commit 56e18f2

Please sign in to comment.