Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Fix default values for address input (#6701)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngotchac authored and gavofyork committed Oct 11, 2017
1 parent 2bfb510 commit 3a9b3b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/src/ui/Form/InputAddressSelect/inputAddressSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ class InputAddressSelect extends Component {

const filteredContacts = nextAllowedValues
? pick(contacts, nextAllowedValues)
: accounts;
: contacts;

const filteredContracts = nextAllowedValues
? pick(contracts, nextAllowedValues)
: accounts;
: contracts;

return (
<AddressSelect
Expand Down

0 comments on commit 3a9b3b4

Please sign in to comment.