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.
2 parents 7e79c70 + c037f95 commit 009f672Copy full SHA for 009f672
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 && p.name.toLowerCase().replaceAll(" ", "_") === protocolTag
64
+ )
65
66
if (found) {
67
const [_, protocol] = found
0 commit comments