From a118f43beb11e78c259842cfc19a29544d64b249 Mon Sep 17 00:00:00 2001
From: nullmames <85548668+nullmames@users.noreply.github.com>
Date: Fri, 13 May 2022 12:22:46 +1000
Subject: [PATCH] Update ecosystem.js
remove feature pages from individual categories
---
src/pages/ecosystem.js | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/pages/ecosystem.js b/src/pages/ecosystem.js
index 8f3e3aa..97296d7 100644
--- a/src/pages/ecosystem.js
+++ b/src/pages/ecosystem.js
@@ -153,9 +153,9 @@ const EcosystemPage = (props) => {
{ecosystems.map((ecosystem,index) => {
return (
- ecosystem.category === 'Dapp' && !ecosystem.featured ? (
+ ecosystem.category === 'Dapp' && (
-
) : ''
+
)
)
})}
@@ -171,9 +171,9 @@ const EcosystemPage = (props) => {
{ecosystems.map((ecosystem,index) => {
return (
- ecosystem.category === 'Contracts' && !ecosystem.featured ? (
+ ecosystem.category === 'Contracts' && (
-
) : ''
+
)
)
})}
@@ -189,9 +189,9 @@ const EcosystemPage = (props) => {
{ecosystems.map((ecosystem,index) => {
return (
- ecosystem.category === 'Tools' && !ecosystem.featured ? (
+ ecosystem.category === 'Tools' && (
-
) : ''
+
)
)
})}
@@ -199,15 +199,15 @@ const EcosystemPage = (props) => {
-
+
-
+
{daos.map((dao,index) => {
return (
- !dao.featured && (
+ dao.category === 'DAO' && (
)
)