remove search limit (#1887)

This commit is contained in:
Athou
2025-09-03 07:45:15 +02:00
parent a80769fae3
commit ad388ae056
31 changed files with 2163 additions and 2283 deletions

View File

@@ -63,11 +63,7 @@ export function Header() {
const dispatch = useAppDispatch()
const { _ } = useLingui()
const searchForm = useForm<{ search: string }>({
validate: {
search: value => (value.length > 0 && value.length < 3 ? _(msg`Search requires at least 3 characters`) : null),
},
})
const searchForm = useForm<{ search: string }>()
const { setValues } = searchForm
useEffect(() => {