From e9622b37421c448452ff575b21afbdd7175bdb99 Mon Sep 17 00:00:00 2001
From: Onuwa Nnachi Isaac
Date: Sat, 29 Jun 2019 10:24:14 +0100
Subject: [PATCH] Remove url from view
---
src/common/components/DappListItem/DappListItem.jsx | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/src/common/components/DappListItem/DappListItem.jsx b/src/common/components/DappListItem/DappListItem.jsx
index 74a102d..a5b21ca 100644
--- a/src/common/components/DappListItem/DappListItem.jsx
+++ b/src/common/components/DappListItem/DappListItem.jsx
@@ -20,7 +20,7 @@ const DappListItem = props => {
onToggleProfileModal,
} = props
- const { name, desc, url, image } = dapp
+ const { name, description, image } = dapp
const handleUpVote = () => {
onClickUpVote(dapp)
@@ -55,13 +55,9 @@ const DappListItem = props => {
className={styles.description}
style={{ WebkitBoxOrient: 'vertical' }}
>
- {desc}
+ {description}
-
- {url}
- →
-
{showActionButtons && (