Skip to content

Commit

Permalink
fixed typescript error
Browse files Browse the repository at this point in the history
  • Loading branch information
mmadariaga committed May 28, 2024
1 parent 7f3c5aa commit b308693
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/src/components/List/Content/FastSearchField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const FastSearchField = (

useEffect(() => {
//reset value
setValue(firstColumnCriteria?.value || '');
setValue((firstColumnCriteria?.value as string) || '');
}, [firstColumnCriteria]);

useEffect(() => {
Expand Down

0 comments on commit b308693

Please sign in to comment.