🛂(frontend) limit input search to 254 characters

254 characters should be sufficient for most
of our usecases.
Limit input search to 254 characters to prevent
errors caused by overly long email addresses.
This commit is contained in:
Anthony LC
2025-09-08 17:55:25 +02:00
committed by Manuel Raynaud
parent 8c1e95c587
commit 4f2e07f949

View File

@@ -64,6 +64,7 @@ export const QuickSearchInput = ({
role="combobox"
placeholder={placeholder ?? t('Search')}
onValueChange={onFilter}
maxLength={254}
/>
</Box>
{separator && <HorizontalSeparator $withPadding={false} />}