fix: remove unecessary any type from TimerOptions

pull/2660/head
William Grant 2 years ago
parent dadc93bfda
commit c1c380ba9d

@ -23,7 +23,7 @@ export const TimeOptions = (props: TimerOptionsProps) => {
<> <>
{!hasOnlyOneMode && <PanelLabel>{window.i18n('timer')}</PanelLabel>} {!hasOnlyOneMode && <PanelLabel>{window.i18n('timer')}</PanelLabel>}
<PanelButtonGroup> <PanelButtonGroup>
{options.map((option: any) => { {options.map(option => {
return ( return (
<PanelRadioButton <PanelRadioButton
key={option.name} key={option.name}

Loading…
Cancel
Save