From 0ef4e1db0c1050a3c6ff1204e21d98a63b96e59d Mon Sep 17 00:00:00 2001 From: LevonW-IIS <103007146+LevonW-IIS@users.noreply.github.com> Date: Mon, 24 Mar 2025 13:22:26 +1300 Subject: [PATCH] fix mantine edit select props typing mismatch --- packages/mantine-react-table/src/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/mantine-react-table/src/types.ts b/packages/mantine-react-table/src/types.ts index de12e79cd..e1de8d6f2 100644 --- a/packages/mantine-react-table/src/types.ts +++ b/packages/mantine-react-table/src/types.ts @@ -541,8 +541,8 @@ export type MRT_ColumnDef = { column: MRT_Column; row: MRT_Row; table: MRT_TableInstance; - }) => HTMLPropsRef & Partial) - | (HTMLPropsRef & Partial); + }) => HTMLPropsRef & Partial) + | (HTMLPropsRef & Partial); mantineEditTextInputProps?: | ((props: { cell: MRT_Cell;