Skip to content

Commit

Permalink
fix(NavDropdown): fix onSelect type (#6151)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyletsang committed Dec 16, 2021
1 parent 06c504c commit 253c998
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/NavDropdown.tsx
Expand Up @@ -8,8 +8,7 @@ import { DropdownMenuVariant } from './DropdownMenu';
import NavLink from './NavLink';
import { BsPrefixRefForwardingComponent } from './helpers';

export interface NavDropdownProps
extends Omit<DropdownProps, 'onSelect' | 'title'> {
export interface NavDropdownProps extends Omit<DropdownProps, 'title'> {
title: React.ReactNode;
disabled?: boolean;
active?: boolean;
Expand Down

0 comments on commit 253c998

Please sign in to comment.