You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on mobile the search field enter gets automatically capitalized, so effectively search doesn't work.
and if a user searches for "Amazon" they'll get no results.
suggested fix:
after line 116:
search = search.trim().toLowerCase()
and change line 324 to:
<input type="text"autocapitalize="off"
The text was updated successfully, but these errors were encountered:
on mobile the search field enter gets automatically capitalized, so effectively search doesn't work.
and if a user searches for "Amazon" they'll get no results.
suggested fix:
after line 116:
search = search.trim().toLowerCase()
and change line 324 to:
<input type="text"autocapitalize="off"
The text was updated successfully, but these errors were encountered: