Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

Commit

Permalink
Update ecosystem.js
Browse files Browse the repository at this point in the history
Remove redundant conditional
  • Loading branch information
nullmames committed May 13, 2022
1 parent a118f43 commit 782f1e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/ecosystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@ const EcosystemPage = (props) => {
<div className={'row'}>
{daos.map((dao,index) => {
return (
dao.category === 'DAO' && (<div key={index} className={'col-6 col-md-3 p-2'}>
<div key={index} className={'col-6 col-md-3 p-2'}>
<Ecosystem ecosystem={dao}/>
</div>)
</div>
)
})}
</div>
Expand Down

0 comments on commit 782f1e9

Please sign in to comment.