Skip to content

Commit

Permalink
fix(alert): alert interface props type
Browse files Browse the repository at this point in the history
  • Loading branch information
wingkwong committed Jan 10, 2025
1 parent a17f27b commit 2930ad2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/alert/src/use-alert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {alert} from "@nextui-org/theme";
import {useControlledState} from "@react-stately/utils";
import {dataAttr, isEmpty, objectToDeps} from "@nextui-org/shared-utils";

interface Props extends HTMLNextUIProps<"div"> {
interface Props extends Omit<HTMLNextUIProps<"div">, "title"> {
/**
* Ref to the DOM node.
*/
Expand Down

0 comments on commit 2930ad2

Please sign in to comment.