diff --git a/app/scripts/controllers/permissions.js b/app/scripts/controllers/permissions.js index 5a26901b19ee..9966cabc1878 100644 --- a/app/scripts/controllers/permissions.js +++ b/app/scripts/controllers/permissions.js @@ -80,9 +80,9 @@ class PermissionsController { * Returns the accounts that should be exposed for the given origin domain, * if any. This method exists for when a trusted context needs to know * which accounts are exposed to a given domain. - * + * * Do not use in untrusted contexts; just send an RPC request. - * + * * @param {string} origin */ getAccounts (origin) { diff --git a/ui/app/components/app/account-menu/account-menu.container.js b/ui/app/components/app/account-menu/account-menu.container.js index 866fdcfbd0b3..6510337fd02f 100644 --- a/ui/app/components/app/account-menu/account-menu.container.js +++ b/ui/app/components/app/account-menu/account-menu.container.js @@ -17,7 +17,7 @@ import AccountMenu from './account-menu.component' function mapStateToProps (state) { const { metamask: { - selectedAddress, isAccountMenuOpen, keyrings, identities, isUnlocked + selectedAddress, isAccountMenuOpen, keyrings, identities, isUnlocked, } } = state return { @@ -60,7 +60,7 @@ function mapDispatchToProps (dispatch) { }, selectApprovedAccount: origin => { dispatch(selectApprovedAccount(origin)) - } + }, } }