WA-521 When data is null do not store in redux null
This commit is contained in:
parent
1781462142
commit
f397bb9388
|
@ -49,7 +49,7 @@ const buildTransactionFrom = (safeAddress: string, tx: TxServiceModel, safeSubje
|
||||||
value: tx.value,
|
value: tx.value,
|
||||||
confirmations,
|
confirmations,
|
||||||
destination: tx.to,
|
destination: tx.to,
|
||||||
data: `0x${tx.data}`,
|
data: `0x${tx.data || ''}`,
|
||||||
isExecuted: tx.isExecuted,
|
isExecuted: tx.isExecuted,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue