Skip to content

Commit

Permalink
fix(ui): QueryListItemCreate invalid props
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandarDev committed Oct 16, 2024
1 parent 7fdeae0 commit 918bf3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/packages/ui/src/QueryList/QueryListItemCreate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Add } from '@signalco/ui-icons';

export type QueryListeItemCreateProps =
Required<Pick<ListItemProps, 'label' | 'onSelected'>> &
Omit<ListItemProps, 'nodeId' | 'startDecorator' | 'endDecorator' | 'href' | 'divRef'> & {
Omit<ListItemProps, 'nodeId' | 'startDecorator' | 'endDecorator' | 'href' | 'divRef' | 'buttonRef'> & {
loading?: boolean
};

Expand Down

0 comments on commit 918bf3d

Please sign in to comment.