Skip to content

Commit

Permalink
Accept both lowercase and uppercase hashes
Browse files Browse the repository at this point in the history
  • Loading branch information
mike76-dev committed Oct 12, 2023
1 parent 170c1e3 commit aaf7aef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/explorer/components/Layout/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export function Search() {
async (values) => {
const response = await search.get({
params: {
query: values.query,
query: values.query.toLowerCase(),
},
})

Expand Down

0 comments on commit aaf7aef

Please sign in to comment.