Skip to content

Commit

Permalink
fix: tupecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
jrgarciadev committed Dec 1, 2024
1 parent 5e8281b commit 30b62e2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .changeset/dull-coats-crash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
"@nextui-org/dropdown": patch
"@nextui-org/listbox": patch
"@nextui-org/popover": patch
"@nextui-org/modal": patch
"@nextui-org/menu": patch
---

Fix typecheck
2 changes: 2 additions & 0 deletions packages/components/dropdown/src/dropdown-trigger.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import {useDropdownContext} from "./dropdown-context";

export interface DropdownTriggerProps {
children?: React.ReactNode;
className?: string;
[key: string]: any;
}

/**
Expand Down
2 changes: 2 additions & 0 deletions packages/components/popover/src/popover-trigger.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import {usePopoverContext} from "./popover-context";

export interface PopoverTriggerProps {
children?: React.ReactNode;
className?: string;
[key: string]: any;
}

/**
Expand Down

0 comments on commit 30b62e2

Please sign in to comment.