Skip to content

Commit

Permalink
omit dev address enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Rashmi-278 committed Oct 9, 2024
1 parent 92e4e73 commit d32109f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions daostar-website/src/components/ExplorePage/ExplorePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ const ExplorePage = ({
const filteredRegistrationsSunrise = (sunriseInstances, networkFilterValue = "") => {
return sunriseInstances
.filter((registration) => {
// Exclude the specific DAO address
// if (registration.daoAddress.toLowerCase() === "0xdeb9e5915db81011c549799a9ea37ede4d72efba") {
// return false;
// }
//Exclude the specific DAO address
if (registration.daoAddress.toLowerCase() === "0xdeb9e5915db81011c549799a9ea37ede4d72efba") {
return false;
}

// Check if the daoURI is in a valid format
if (!isValidDaoURI(registration.daoURI)) {
Expand Down

0 comments on commit d32109f

Please sign in to comment.