Skip to content

Commit 65197fc

Browse files
yann300Aniket-Engg
authored andcommitted
hide msg if locals present
1 parent 38f9520 commit 65197fc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

libs/remix-ui/debugger-ui/src/lib/vm-debugger/solidity-locals.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ export const SolidityLocals = ({data, message, registerEvent, triggerEvent, clas
4141
</label>
4242
)
4343
}
44-
44+
if (calldata && Object.keys(calldata).length) {
45+
message = ''
46+
}
4547
return (
4648
<div className={className} id="soliditylocals" data-id="solidityLocals">
4749
<DropdownPanel

0 commit comments

Comments
 (0)