Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Site Logo: Remove "Reset" button icon #35434

Merged
merged 1 commit into from Oct 8, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 2 additions & 4 deletions packages/block-library/src/site-logo/edit.js
Expand Up @@ -35,7 +35,7 @@ import {
} from '@wordpress/block-editor';
import { useSelect, useDispatch } from '@wordpress/data';
import { store as coreStore } from '@wordpress/core-data';
import { crop, reset, siteLogo as icon } from '@wordpress/icons';
import { crop, siteLogo as icon } from '@wordpress/icons';

/**
* Internal dependencies
Expand Down Expand Up @@ -399,9 +399,7 @@ export default function LogoEdit( {
onSelect={ onSelectLogo }
onError={ onUploadError }
>
<MenuItem icon={ reset } onClick={ onRemoveLogo }>
{ __( 'Reset' ) }
</MenuItem>
<MenuItem onClick={ onRemoveLogo }>{ __( 'Reset' ) }</MenuItem>
</MediaReplaceFlow>
</BlockControls>
);
Expand Down