diff --git a/app/components/ens/nameLookup.js b/app/components/ens/nameLookup.js
index 8e9f828..1da20fd 100644
--- a/app/components/ens/nameLookup.js
+++ b/app/components/ens/nameLookup.js
@@ -6,6 +6,7 @@ import { hash } from 'eth-ens-namehash';
import Hidden from '@material-ui/core/Hidden';
import Typography from '@material-ui/core/Typography';
import ENSSubdomainRegistry from 'Embark/contracts/ENSSubdomainRegistry';
+import ENSRegistry from 'Embark/contracts/ENSRegistry';
import { Button, Field, TextInput, MobileSearch, MobileButton, Card, Info, Text } from '../../ui/components'
import { IconCheck } from '../../ui/icons'
import { keyFromXY } from '../../utils/ecdsa';
@@ -100,13 +101,13 @@ class RenderAddresses extends PureComponent {
state = { copied: false, editMenu: false, editAction: false }
render() {
- const { domainName, address, statusAccount, expirationTime, defaultAccount } = this.props
+ const { domainName, address, statusAccount, expirationTime, defaultAccount, ownerAddress } = this.props
const { copied, editMenu, editAction } = this.state
const markCopied = (v) => { this.setState({ copied: v }) }
const isCopied = address => address == copied;
const renderCopied = address => isCopied(address) &&