diff --git a/src/components/OperationsList/Operation.js b/src/components/OperationsList/Operation.js index f417188e..21ab2c0e 100644 --- a/src/components/OperationsList/Operation.js +++ b/src/components/OperationsList/Operation.js @@ -49,6 +49,10 @@ const OperationRaw = styled(Box).attrs({ ` const Address = ({ value }: { value: string }) => { + if (!value) { + return + } + const addrSize = value.length / 2 const left = value.slice(0, 10)