fix: exclude multiple children without generic in DialogTrigger
This commit is contained in:
parent
09bdb41160
commit
4c63b6bd9d
@ -56,13 +56,11 @@ const DialogRoot = ({ children }: DialogRootProps) => {
|
||||
* =========================
|
||||
*/
|
||||
|
||||
interface DialogTriggerProps<T extends React.ReactNode> {
|
||||
children: T extends any[] ? never : T;
|
||||
interface DialogTriggerProps {
|
||||
children: Exclude<React.ReactNode, Iterable<React.ReactNode>>;
|
||||
}
|
||||
|
||||
const DialogTrigger = <T extends React.ReactNode>({
|
||||
children,
|
||||
}: DialogTriggerProps<T>) => {
|
||||
const DialogTrigger = ({ children }: DialogTriggerProps) => {
|
||||
const [_, setState] = useDialogContext();
|
||||
// const onClick = () => setState((p) => ({ ...p, opened: true }));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user