Skip to content

Commit

Permalink
refactor: rename ConsiderationProposalList to ConsiderationPhase and …
Browse files Browse the repository at this point in the history
…move to components/phase
  • Loading branch information
anarkrypto committed Mar 5, 2025
1 parent 1d505de commit 330477c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/funding-rounds/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
import { CompletedPhase } from '@/components/phases/CompletedPhase'
import { VotingPhase } from '@/components/phases/VotingPhase'
import { DeliberationPhase } from '@/components/phases/DeliberationPhase'
import { ConsiderationProposalList } from '@/components/ConsiderationProposalList'
import { ConsiderationPhase } from '@/components/phases/ConsiderationPhase'
import { SubmissionProposalList } from '@/components/phases/SubmissionProposalList'
import { BetweenPhases } from '@/components/phases/BetweenPhases'
import { useFundingRound } from '@/hooks/use-funding-round'
Expand Down Expand Up @@ -286,7 +286,7 @@ function FundingRoundPhaseComponent({
return <SubmissionProposalList fundingRoundId={data.id} />
case 'CONSIDERATION':
return (
<ConsiderationProposalList
<ConsiderationPhase
fundingRoundId={data.id}
fundingRoundMEFId={data.mefId}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ function VoterAddress({ address }: { address: string }) {
)
}

export function ConsiderationProposalList({
export function ConsiderationPhase({
fundingRoundId,
fundingRoundMEFId,
}: Props) {
Expand Down

0 comments on commit 330477c

Please sign in to comment.