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 1490dfe commit c037f95Copy full SHA for c037f95
src/pages/Protocol/Protocol.tsx
@@ -60,7 +60,7 @@ export const ProtocolPage: React.FC = () => {
60
61
if (protocolTag) {
62
const found = Object.entries(protocols).find(
63
- ([_, p]) => p.name?.toLowerCase().replaceAll(" ", "_") === protocolTag
+ ([_, p]) => p.name && p.name.toLowerCase().replaceAll(" ", "_") === protocolTag
64
)
65
66
if (found) {
0 commit comments