We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43278a9 commit be9b6dbCopy full SHA for be9b6db
src/pages/Protocol/Protocol.tsx
@@ -59,7 +59,9 @@ export const ProtocolPage: React.FC = () => {
59
if (!protocols) return
60
61
if (protocolTag) {
62
- const found = Object.entries(protocols).find(([_, p]) => p.tag === protocolTag)
+ const found = Object.entries(protocols).find(
63
+ ([_, p]) => p.name.toLowerCase().replaceAll(" ", "_") === protocolTag
64
+ )
65
66
if (found) {
67
const [_, protocol] = found
0 commit comments