1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

Changed to address to optional for TransactionDecoding component

This commit is contained in:
Zachary Belford 2022-06-02 16:03:46 -07:00
parent c2d5bd01c4
commit 9c8b22a20b
No known key found for this signature in database
GPG Key ID: CC6C9E5B7B8D6059

View File

@ -239,6 +239,6 @@ export default function TransactionDecoding({ to = '', inputData: data = '' }) {
}
TransactionDecoding.propTypes = {
to: PropTypes.string.isRequired,
to: PropTypes.string,
inputData: PropTypes.string.isRequired,
};