Skip to content

Commit

Permalink
FIX #750
Browse files Browse the repository at this point in the history
  • Loading branch information
quentinovega committed Sep 13, 2024
1 parent 302eba3 commit e76ea2b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ const YourTeams = ({

const [searchedTeam, setSearchedTeam] = useState<string>();
const maybeTeams = searchedTeam
? teams.filter((team) => team.name.toLowerCase().includes(searchedTeam))
? teams.filter((team) => team.name.toLocaleLowerCase().includes(searchedTeam.toLocaleLowerCase()))
: teams;
return (
<div className={'top__container p-3 rounded album mb-2'}>
Expand Down

0 comments on commit e76ea2b

Please sign in to comment.