Skip to content

Commit

Permalink
staging
Browse files Browse the repository at this point in the history
  • Loading branch information
Rashmi-278 committed Aug 26, 2024
1 parent cdd8d8c commit 575c37a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions daostar-website/src/components/ExplorePage/ExplorePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ export const filterRegistrations = (registration, filterVal = "") => {
return false;
}

// Omit dev test address
if (registration.daoAddress === "0xDeb9e5915Db81011C549799A9EA37EdE4d72EFBA") {
return false;
}
// // Omit dev test address
// if (registration.daoAddress === "0xDeb9e5915Db81011C549799A9EA37EdE4d72EFBA") {
// return false;
// }

const daoNameLower = registration.daoName.toLowerCase();
const filterWords = ["scam", "test", "fuck"];
Expand Down Expand Up @@ -107,9 +107,9 @@ const filteredRegistrationsSunrise = (sunriseInstances, networkFilterValue = "")
return sunriseInstances
.filter((registration) => {
// Exclude the specific DAO address
if (registration.daoAddress.toLowerCase() === "0xdeb9e5915db81011c549799a9ea37ede4d72efba") {
return false;
}
// 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 575c37a

Please sign in to comment.