Skip to content

Commit

Permalink
Fix Dropdown component return type
Browse files Browse the repository at this point in the history
  • Loading branch information
iacopolea committed Apr 19, 2024
1 parent ce879bb commit d8c3f31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stories/Dropdown/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function Dropdown<
Option,
IsMulti extends boolean = false,
Group extends GroupBase<Option> = GroupBase<Option>,
>(props: Props<Option, IsMulti, Group>): React.ReactNode {
>(props: Props<Option, IsMulti, Group>) {
const customStyle: StylesConfig<Option, IsMulti, Group> = {
control: (provided, state) => {
let borderColor = aqBootstrapTheme.colors.elementGeneric;
Expand Down

0 comments on commit d8c3f31

Please sign in to comment.