From 67cbe089fbc63f3a9a2a86cbb0af97a13ff76c1f Mon Sep 17 00:00:00 2001 From: Noah Saso Date: Tue, 5 Nov 2024 12:40:54 -0500 Subject: [PATCH] removed neutron bad proposal filter --- packages/stateful/components/ProposalList.tsx | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/packages/stateful/components/ProposalList.tsx b/packages/stateful/components/ProposalList.tsx index bf5414d3d2..8f352a2eb5 100644 --- a/packages/stateful/components/ProposalList.tsx +++ b/packages/stateful/components/ProposalList.tsx @@ -17,18 +17,13 @@ import { useUpdatingRef, } from '@dao-dao/stateless' import { - ChainId, CommonProposalListInfo, ProposalStatus, ProposalStatusEnum, StatefulProposalLineProps, StatefulProposalListProps, } from '@dao-dao/types' -import { - NEUTRON_GOVERNANCE_DAO, - chainIsIndexed, - webSocketChannelNameForDao, -} from '@dao-dao/utils' +import { chainIsIndexed, webSocketChannelNameForDao } from '@dao-dao/utils' import { useMembership, @@ -289,18 +284,6 @@ export const ProposalList = ({ status, }) - // Remove erroneous Neutron proposals. - // TODO: remove this after october 9 - newProposalInfos = newProposalInfos.filter( - (info) => - !( - info.proposalModule.chainId === ChainId.NeutronMainnet && - info.proposalModule.dao.coreAddress === - NEUTRON_GOVERNANCE_DAO && - (info.id === 'A47' || info.id === 'A48') - ) - ) - newOpenProposals = [ ...newOpenProposals, ...newProposalInfos