Skip to content

Commit

Permalink
removed neutron bad proposal filter
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahSaso committed Nov 5, 2024
1 parent e02cd02 commit 67cbe08
Showing 1 changed file with 1 addition and 18 deletions.
19 changes: 1 addition & 18 deletions packages/stateful/components/ProposalList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 67cbe08

Please sign in to comment.