We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 70e0133 + 3cb2bc9 commit c538987Copy full SHA for c538987
1 file changed
src/custom/InputSearchField/InputSearchField.tsx
@@ -84,8 +84,7 @@ const InputSearchField: React.FC<InputSearchFieldProps> = ({
84
if (value === '') {
85
setOpen(false);
86
} else {
87
- const encodedValue = encodeURIComponent(value);
88
- fetchSuggestions(encodedValue);
+ fetchSuggestions(value);
89
setError('');
90
setOpen(true);
91
}
0 commit comments