Skip to content

Commit b78c656

Browse files
author
Magne Cedric
committed
Merge branch 'main' into improve-mm-login
2 parents 7391b06 + eb71ab0 commit b78c656

File tree

1 file changed

+1
-1
lines changed
  • src/components/ParserOpenRPC/InteractiveBox

1 file changed

+1
-1
lines changed

src/components/ParserOpenRPC/InteractiveBox/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export default function InteractiveBox({
131131
if (isObject(value)) {
132132
return [
133133
checkName(name),
134-
Object.fromEntries(Object.entries(value).map(([key, val]) => [key, isObject(val) ? val.value : val]))
134+
Object.fromEntries(Object.entries(value).map(([key, val]) => [key, isObject(val) && val?.description ? val.value : val]))
135135
];
136136
}
137137
return [checkName(name), value];

0 commit comments

Comments
 (0)