From 054b4810d552fcea61079ac4eb41650a0569cd74 Mon Sep 17 00:00:00 2001 From: Nicolas Gotchac Date: Sat, 10 Dec 2016 15:30:39 +0100 Subject: [PATCH] Fix wallet data's prop types --- js/src/modals/CreateWallet/WalletInfo/walletInfo.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/src/modals/CreateWallet/WalletInfo/walletInfo.js b/js/src/modals/CreateWallet/WalletInfo/walletInfo.js index bbbe5877f..cc5c96964 100644 --- a/js/src/modals/CreateWallet/WalletInfo/walletInfo.js +++ b/js/src/modals/CreateWallet/WalletInfo/walletInfo.js @@ -30,10 +30,12 @@ export default class WalletInfo extends Component { owners: PropTypes.array.isRequired, required: PropTypes.oneOfType([ PropTypes.string, + PropTypes.object, PropTypes.number ]).isRequired, daylimit: PropTypes.oneOfType([ PropTypes.string, + PropTypes.object, PropTypes.number ]).isRequired,