Fix step list item props type
[PREMIUM-194]
This commit is contained in:
@@ -15,7 +15,9 @@ const isAppleOS = (): boolean => {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
type Props = ComponentProps<typeof InserterListboxItem> & {
|
type ListboxItemProps = ComponentProps<typeof InserterListboxItem>;
|
||||||
|
|
||||||
|
type Props = Omit<ListboxItemProps, 'onSelect' | 'onHover'> & {
|
||||||
item: Item;
|
item: Item;
|
||||||
onSelect: (item: Item, isModifierKey: boolean) => void;
|
onSelect: (item: Item, isModifierKey: boolean) => void;
|
||||||
onHover: (item: Item) => void;
|
onHover: (item: Item) => void;
|
||||||
|
Reference in New Issue
Block a user