Fix default values for address input (#6701)
This commit is contained in:
parent
2bfb510554
commit
3a9b3b4729
@ -53,11 +53,11 @@ class InputAddressSelect extends Component {
|
|||||||
|
|
||||||
const filteredContacts = nextAllowedValues
|
const filteredContacts = nextAllowedValues
|
||||||
? pick(contacts, nextAllowedValues)
|
? pick(contacts, nextAllowedValues)
|
||||||
: accounts;
|
: contacts;
|
||||||
|
|
||||||
const filteredContracts = nextAllowedValues
|
const filteredContracts = nextAllowedValues
|
||||||
? pick(contracts, nextAllowedValues)
|
? pick(contracts, nextAllowedValues)
|
||||||
: accounts;
|
: contracts;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<AddressSelect
|
<AddressSelect
|
||||||
|
Loading…
Reference in New Issue
Block a user