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' && (
)
)