diff --git a/CHANGELOG.md b/CHANGELOG.md index 222dede46..320019563 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,8 @@ changes. ### Removed +- Remove ratification threshold for Info Action for Consitutional Committee [Issue 3108](https://github.com/IntersectMBO/govtool/issues/3108) + ## [v2.0.13](https://github.com/IntersectMBO/govtool/releases/tag/v2.0.13) 2025-02-27 ### Added diff --git a/govtool/frontend/src/components/molecules/VotesSubmitted.tsx b/govtool/frontend/src/components/molecules/VotesSubmitted.tsx index 0e0a27b8b..c04f5aa60 100644 --- a/govtool/frontend/src/components/molecules/VotesSubmitted.tsx +++ b/govtool/frontend/src/components/molecules/VotesSubmitted.tsx @@ -207,7 +207,11 @@ export const VotesSubmitted = ({ noVotesPercentage={ccNoVotesPercentage} notVotedVotes={ccNotVotedVotes} notVotedPercentage={ccNotVotedVotesPercentage} - threshold={Number(ccThreshold)} + threshold={ + type !== GovernanceActionType.InfoAction + ? Number(ccThreshold) + : null + } /> )}