From 0d2ca9d140ae63295cd4b2678665d4d2b2b47276 Mon Sep 17 00:00:00 2001 From: Armin Mehinovic Date: Mon, 16 Dec 2024 11:18:25 +0100 Subject: [PATCH] Add types --- .../src/components/panel/filterPanel/GridFilterInputValue.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/x-data-grid/src/components/panel/filterPanel/GridFilterInputValue.tsx b/packages/x-data-grid/src/components/panel/filterPanel/GridFilterInputValue.tsx index 225fbc49beb14..0a50bf03c258c 100644 --- a/packages/x-data-grid/src/components/panel/filterPanel/GridFilterInputValue.tsx +++ b/packages/x-data-grid/src/components/panel/filterPanel/GridFilterInputValue.tsx @@ -47,7 +47,7 @@ function GridFilterInputValue(props: GridTypeFilterInputValueProps) { } = props; const filterTimeout = useTimeout(); - const [filterValueState, setFilterValueState] = React.useState( + const [filterValueState, setFilterValueState] = React.useState( sanitizeFilterItemValue(item.value, type), ); const [applying, setIsApplying] = React.useState(false);