From b4f267f05eb7978609aa3e05c3bb7431ac35661e Mon Sep 17 00:00:00 2001 From: Vasek Mlejnsky Date: Fri, 24 Aug 2018 11:44:19 +0200 Subject: [PATCH] Fix propType for an icon --- .../components/LeftNavigation/components/RowCoin/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/views/Wallet/components/LeftNavigation/components/RowCoin/index.js b/src/js/views/Wallet/components/LeftNavigation/components/RowCoin/index.js index e02eb165..819ff669 100644 --- a/src/js/views/Wallet/components/LeftNavigation/components/RowCoin/index.js +++ b/src/js/views/Wallet/components/LeftNavigation/components/RowCoin/index.js @@ -81,7 +81,7 @@ const RowCoin = ({ ); const iconShape = { - type: PropTypes.string.isRequired, + type: PropTypes.arrayOf(PropTypes.string).isRequired, color: PropTypes.string.isRequired, size: PropTypes.number.isRequired, };