🛂(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:
committed by
Manuel Raynaud
parent
8c1e95c587
commit
4f2e07f949
@@ -64,6 +64,7 @@ export const QuickSearchInput = ({
|
||||
role="combobox"
|
||||
placeholder={placeholder ?? t('Search')}
|
||||
onValueChange={onFilter}
|
||||
maxLength={254}
|
||||
/>
|
||||
</Box>
|
||||
{separator && <HorizontalSeparator $withPadding={false} />}
|
||||
|
||||
Reference in New Issue
Block a user