diff --git a/mailpoet/assets/js/src/automation/editor/components/inserter/step_list_item.tsx b/mailpoet/assets/js/src/automation/editor/components/inserter/step_list_item.tsx index 9e6eb5fe34..61e750fe9d 100644 --- a/mailpoet/assets/js/src/automation/editor/components/inserter/step_list_item.tsx +++ b/mailpoet/assets/js/src/automation/editor/components/inserter/step_list_item.tsx @@ -15,7 +15,9 @@ const isAppleOS = (): boolean => { ); }; -type Props = ComponentProps & { +type ListboxItemProps = ComponentProps; + +type Props = Omit & { item: Item; onSelect: (item: Item, isModifierKey: boolean) => void; onHover: (item: Item) => void;