Skip to content

Commit 3b4891d

Browse files
committed
fix(#3108): hide voting threshold for cc in info type governance action
1 parent 68fa42b commit 3b4891d

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ changes.
2020

2121
### Removed
2222

23+
- Remove ratification threshold for Info Action for Consitutional Committee [Issue 3108](https://github.com/IntersectMBO/govtool/issues/3108)
24+
2325
## [v2.0.13](https://github.com/IntersectMBO/govtool/releases/tag/v2.0.13) 2025-02-27
2426

2527
### Added

govtool/frontend/src/components/molecules/VotesSubmitted.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,11 @@ export const VotesSubmitted = ({
207207
noVotesPercentage={ccNoVotesPercentage}
208208
notVotedVotes={ccNotVotedVotes}
209209
notVotedPercentage={ccNotVotedVotesPercentage}
210-
threshold={Number(ccThreshold)}
210+
threshold={
211+
type !== GovernanceActionType.InfoAction
212+
? Number(ccThreshold)
213+
: null
214+
}
211215
/>
212216
)}
213217
</Box>

0 commit comments

Comments
 (0)