PromoPanelInput: remove icon label

This commit is contained in:
Alex Gleason 2022-05-05 15:54:06 -05:00
parent 91c52cdde7
commit af61ae9d35
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
2 changed files with 1 additions and 2 deletions

View file

@ -3,7 +3,7 @@ import React from 'react';
import IconPickerDropdown from './icon_picker_dropdown';
interface IIconPicker {
label: React.ReactNode,
label?: React.ReactNode,
value: string,
onChange: React.ChangeEventHandler,
}

View file

@ -82,7 +82,6 @@ const PromoPanelInput: StreamfieldComponent<PromoPanelItem> = ({ value, onChange
return (
<HStack space={2} grow>
<IconPicker
label={intl.formatMessage(messages.promoItemIcon)}
value={value.icon}
onChange={handleIconChange}
/>