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 7391b06 + eb71ab0 commit b78c656Copy full SHA for b78c656
src/components/ParserOpenRPC/InteractiveBox/index.tsx
@@ -131,7 +131,7 @@ export default function InteractiveBox({
131
if (isObject(value)) {
132
return [
133
checkName(name),
134
- Object.fromEntries(Object.entries(value).map(([key, val]) => [key, isObject(val) ? val.value : val]))
+ Object.fromEntries(Object.entries(value).map(([key, val]) => [key, isObject(val) && val?.description ? val.value : val]))
135
];
136
}
137
return [checkName(name), value];
0 commit comments