Skip to content

Commit

Permalink
Merge pull request #35 from All-Khwarizmi/stats-ui
Browse files Browse the repository at this point in the history
πŸ› FIX: Transform to lowercase
  • Loading branch information
All-Khwarizmi committed Mar 20, 2024
2 parents 584c71d + 0658758 commit 4e0f065
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default function Main() {
setWord("");
return;
}
setSearch(word.trim());
setSearch(word.trim().toLowerCase());
}
return (
<>
Expand Down
File renamed without changes.

0 comments on commit 4e0f065

Please sign in to comment.