Fix unexpected text node error

This commit is contained in:
Oleksii Bulenok
2026-08-10 16:44:20 +02:00
parent 06f06a7a63
commit 3969b8b376
+1 -1
View File
@@ -32,7 +32,7 @@ export function SearchInput({
}: Props) {
const t = useTheme()
const {t: l} = useLingui()
const showClear = value && value.length > 0
const showClear = !!value && value.length > 0
const internalRef = useRef<React.ComponentRef<typeof TextInput>>(null)
useEffect(() => {