Skip to content

Commit

Permalink
Add types
Browse files Browse the repository at this point in the history
  • Loading branch information
arminmeh committed Dec 16, 2024
1 parent feb0db7 commit 0d2ca9d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function GridFilterInputValue(props: GridTypeFilterInputValueProps) {
} = props;

const filterTimeout = useTimeout();
const [filterValueState, setFilterValueState] = React.useState(
const [filterValueState, setFilterValueState] = React.useState<string | number | undefined>(
sanitizeFilterItemValue(item.value, type),
);
const [applying, setIsApplying] = React.useState(false);
Expand Down

0 comments on commit 0d2ca9d

Please sign in to comment.