Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,14 @@ changes.

## [Unreleased]

### Added

### Fixed

### Changed

### Removed

## [v2.0.20](https://github.com/IntersectMBO/govtool/releases/tag/v2.0.20) 2025-04-15


### Added

- Add Proposal discussion context that manages username [Issue 3341](https://github.com/IntersectMBO/govtool/issues/3341)
- Add epochParams and ada holder balance to Proposal Discussion Pillar [Issue 2243](https://github.com/IntersectMBO/govtool/issues/2243)
- Add skeleton element to the drep and governance action cards on validation [Issue 3247](https://github.com/IntersectMBO/govtool/issues/3247)
- Add mock for the authors field in governance metadata [Issue 3307](https://github.com/IntersectMBO/govtool/issues/3307)

- Add uncontrolled image input to improve performance of large base64 encoded image strings
- Add snackbar to pdf

### Fixed

Expand Down
3 changes: 3 additions & 0 deletions govtool/frontend/src/pages/ProposalDiscussion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
useCardano,
useGovernanceActions,
useProposalDiscussion,
useSnackbar,
} from "@/context";
import { useValidateMutation } from "@/hooks/mutations";
import { useScreenDimension } from "@/hooks/useScreenDimension";
Expand All @@ -30,6 +31,7 @@ export const ProposalDiscussionPillar = () => {
const { fetchDRepVotingPowerList } = useGetDRepVotingPowerList();
const { username, setUsername } = useProposalDiscussion();
const { votingPower } = useGetAdaHolderVotingPowerQuery(context.stakeKey);
const snackbarContext = useSnackbar();

return (
<Box
Expand Down Expand Up @@ -83,6 +85,7 @@ export const ProposalDiscussionPillar = () => {
setUsername={setUsername}
epochParams={epochParams}
votingPower={votingPower}
{...snackbarContext}
/>
</Suspense>
</Box>
Expand Down