From 575c37a5211f90a475baad08a4078054d9f79279 Mon Sep 17 00:00:00 2001 From: Rashmi-278 Date: Tue, 27 Aug 2024 02:34:29 +0530 Subject: [PATCH] staging --- .../src/components/ExplorePage/ExplorePage.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/daostar-website/src/components/ExplorePage/ExplorePage.js b/daostar-website/src/components/ExplorePage/ExplorePage.js index 3bef5d8..8622fd7 100644 --- a/daostar-website/src/components/ExplorePage/ExplorePage.js +++ b/daostar-website/src/components/ExplorePage/ExplorePage.js @@ -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"]; @@ -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)) {