Skip to content

Commit

Permalink
fix: com (#16135)
Browse files Browse the repository at this point in the history
bobox-ref-bug
  • Loading branch information
andreancardona committed Apr 4, 2024
1 parent 4633e13 commit dd07c6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react/src/components/ComboBox/ComboBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import React, {
type ReactElement,
type RefAttributes,
type PropsWithChildren,
type PropsWithoutRef,
type PropsWithRef,
type InputHTMLAttributes,
type MouseEvent,
type KeyboardEvent,
Expand Down Expand Up @@ -999,7 +999,7 @@ ComboBox.propTypes = {
warnText: PropTypes.node,
};

type ComboboxComponentProps<ItemType> = PropsWithoutRef<
type ComboboxComponentProps<ItemType> = PropsWithRef<
PropsWithChildren<ComboBoxProps<ItemType>> & RefAttributes<HTMLInputElement>
>;

Expand Down

0 comments on commit dd07c6f

Please sign in to comment.