diff --git a/src/components/OrchAddressViewer.js b/src/components/OrchAddressViewer.js
index 5dee54f..66aa0fb 100644
--- a/src/components/OrchAddressViewer.js
+++ b/src/components/OrchAddressViewer.js
@@ -9,11 +9,11 @@ const Address = (obj) => {
let thisInfo = null;
const now = new Date().getTime();
// Lookup domain in cache
- if (livepeer.ensDomainMapping){
- for (const thisAddr of livepeer.ensDomainMapping) {
- if (thisAddr.address === obj.address) {
- thisDomain = thisAddr;
- // Check timeout
+ if (livepeer.ensDomainMapping) {
+ for (const thisAddr of livepeer.ensDomainMapping) {
+ if (thisAddr.address === obj.address) {
+ thisDomain = thisAddr;
+ // Check timeout
if (now - thisAddr.timestamp < 86400000) {
break;
}
@@ -61,17 +61,13 @@ const Address = (obj) => {
thisName = thisInfo.domain;
if (thisInfo.avatar) {
thisIcon =
-
-
-
} else {
thisIcon =
-
-
-
}
} else {
@@ -81,10 +77,8 @@ const Address = (obj) => {
return (