Skip to content

Commit

Permalink
Merge pull request #2518 from IntersectMBO/fix/misalignment-of-the-vo…
Browse files Browse the repository at this point in the history
…tes-when-connected

fix: misalignment of votes on connected governance actions
  • Loading branch information
MSzalowski authored Dec 13, 2024
2 parents 32a3f8b + 8be8d63 commit 8620468
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ changes.
### Fixed

- Fix mzero parsing error on fetching the /proposal/list [Issue 2446](https://github.com/IntersectMBO/govtool/issues/2446)
- Fix scaling gov action votes on lower resolutions

### Changed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const GovernanceActionDetailsCard = ({
const [isVoteSubmitted, setIsVoteSubmitted] = useState<boolean>(false);
const { screenWidth, isMobile } = useScreenDimension();

const isOneColumn = (isDashboard && screenWidth < 1645) ?? isMobile;
const isOneColumn = (isDashboard && screenWidth < 1036) ?? isMobile;
const { pathname, hash } = useLocation();

const govActionLinkToShare = `${window.location.protocol}//${
Expand Down

0 comments on commit 8620468

Please sign in to comment.