Skip to content

Commit 115cd0a

Browse files
committed
fix: typing for transferListProps
1 parent cc3a292 commit 115cd0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TransferList/TransferList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
} from "@mantine/core";
1010

1111
export type TransferListProps<T extends FieldValues> = UseControllerProps<T> &
12-
$TransferListProps;
12+
Omit<$TransferListProps, "value" | "onChange">;
1313

1414
export function TransferList<T extends FieldValues>({
1515
name,

0 commit comments

Comments
 (0)