diff --git a/common/containers/Tabs/Contracts/components/Interact/components/InteractExplorer/index.tsx b/common/containers/Tabs/Contracts/components/Interact/components/InteractExplorer/index.tsx index 1ab39872..ae8277e6 100644 --- a/common/containers/Tabs/Contracts/components/Interact/components/InteractExplorer/index.tsx +++ b/common/containers/Tabs/Contracts/components/Interact/components/InteractExplorer/index.tsx @@ -127,7 +127,8 @@ class InteractExplorerClass extends Component { {selectedFunction.contract.outputs.map((output: any, index: number) => { const { type, name } = output; const parsedName = name === '' ? index : name; - const rawFieldValue = outputs[parsedName] || ''; + const o = outputs[parsedName]; + const rawFieldValue = o === null || o === undefined ? '' : o; const decodedFieldValue = Buffer.isBuffer(rawFieldValue) ? bufferToHex(rawFieldValue) : rawFieldValue;