web: always trim the search string passed.

This commit is contained in:
Ken Sternberg 2024-01-04 13:14:43 -08:00
parent 10999630e5
commit e1c0cd44ae
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ const providerListArgs = (page: number, search = "") => ({
ordering: "name",
applicationIsnull: false,
pageSize: 20,
search: search,
search: search.trim(),
page,
});