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>}
<PanelButtonGroup>
{options.map((option: any) => {
{options.map(option => {
return (
<PanelRadioButton
key={option.name}

Loading…
Cancel
Save