Fix code indicator display flag

This commit is contained in:
Willian Mitsuda 2022-03-25 02:07:02 -03:00
parent 2d38df965d
commit 23c99ec957
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ const TransactionAddress: React.FC<TransactionAddressProps> = ({
creation={creation}
metadata={metadata}
eoa={
showCodeIndicator !== undefined && blockNumber !== undefined
showCodeIndicator && blockNumber !== undefined
? !toHasCode
: undefined
}