diff --git a/packages/material-react-table/src/components/inputs/MRT_FilterTextField.tsx b/packages/material-react-table/src/components/inputs/MRT_FilterTextField.tsx index 87d197484..b32914c5a 100644 --- a/packages/material-react-table/src/components/inputs/MRT_FilterTextField.tsx +++ b/packages/material-react-table/src/components/inputs/MRT_FilterTextField.tsx @@ -512,12 +512,14 @@ export const MRT_FilterTextField = ({ (option) => getValueAndLabel(option).value === value, ); - return ( - - ); + if (selectedValue) { + return ( + + ); + } })} )