Skip to content

Commit

Permalink
chore(developer): make links lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh committed May 10, 2024
1 parent db0365f commit 3ad501e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/developer/src/components/page/Keys.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const columns = [
header: () => <span>Key</span>,
cell: (info) => {
const value = info.getValue().toUpperCase();
return <Link to={`${value}`}>{value}</Link>;
return <Link to={`${value.toLowerCase()}`}>{value}</Link>;
},
}),
columnHelper.accessor('notes', {
Expand Down

0 comments on commit 3ad501e

Please sign in to comment.