diff --git a/src/components/eventButtonAddress.js b/src/components/eventButtonAddress.js
index 6407512..01dfd86 100644
--- a/src/components/eventButtonAddress.js
+++ b/src/components/eventButtonAddress.js
@@ -92,17 +92,12 @@ const EventButtonAddress = (obj) => {
let thisName;
let thisIcon;
if (hasENS) {
- if (thisInfo) {
- thisName =
{thisInfo.domain}
;
- if (thisInfo.avatar) {
- thisIcon =
-
-
-
- }
- } else {
- thisName = {obj.address};
- thisIcon = null;
+ thisName = {thisInfo.domain}
;
+ if (thisInfo.avatar) {
+ thisIcon =
+
+
+
}
} else if (hasThreeBox) {
if (thisInfo.name) {
@@ -115,6 +110,9 @@ const EventButtonAddress = (obj) => {
} else {
thisIcon = null;
}
+ } else {
+ thisName = {obj.address};
+ thisIcon = null;
}