Skip to content

Commit a57ac5a

Browse files
authored
Merge pull request #3373 from IntersectMBO/develop
2 parents 3976a60 + 1fec73f commit a57ac5a

File tree

6 files changed

+52
-12
lines changed

6 files changed

+52
-12
lines changed

.github/ISSUE_TEMPLATE/feature_idea.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,4 @@ body:
8585
placeholder: |
8686
As a [ada holder | DRep | Direct voter], I want [some goal] so that [some reason].
8787
validations:
88-
required: false
88+
required: false
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Feature Suggestion
2+
description: Suggest a new feature or enhancement for GovTool.
3+
labels: ["Feature Request", "Needs UX Review"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value:
8+
Please fill out the following details.
9+
- type: textarea
10+
id: problem-statement
11+
attributes:
12+
label: "💡 Suggestion or feature"
13+
description: "Please describe the user need, idea, or pain point."
14+
placeholder: "Example: Users would benefit from having X functionality, so they can do Y..."
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: user-impact
19+
attributes:
20+
label: "Who does this help?"
21+
description: "Which users will benefit from this feature? How does it improve their experience?"
22+
placeholder: "Example: This feature will help first-time users onboard faster..."
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: dependencies
27+
attributes:
28+
label: "How might we do this?"
29+
description: "Suggestions on implementation"
30+
placeholder: "Example: Add a button that says GO to the home page"
31+
validations:
32+
required: false
33+
- type: textarea
34+
id: other-info
35+
attributes:
36+
label: "Anything else you might want to add?"
37+
description: "Free text box for any comments"
38+
placeholder: "I love GovTool, and so does my dog!"
39+
validations:
40+
required: false

govtool/frontend/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

govtool/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@hookform/resolvers": "^3.3.1",
3030
"@intersect.mbo/govtool-outcomes-pillar-ui": "1.3.0",
3131
"@intersect.mbo/intersectmbo.org-icons-set": "^1.0.8",
32-
"@intersect.mbo/pdf-ui": "0.7.0-beta-10",
32+
"@intersect.mbo/pdf-ui": "0.7.0-beta-11",
3333
"@mui/icons-material": "^5.14.3",
3434
"@mui/material": "^5.14.4",
3535
"@rollup/plugin-babel": "^6.0.4",

govtool/frontend/src/hooks/queries/useGetDRepVotingPowerList.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ export const useGetDRepVotingPowerList = () => {
1616
enabled: false,
1717
});
1818

19-
const fetchDRepVotingPowerList = async (identifiers: string[]) =>
19+
const fetchDRepVotingPowerList = async (identifiers: string[] = []) =>
2020
queryClient.fetchQuery({
21-
queryKey: [QUERY_KEYS.useGetDRepVotingPowerListKey],
21+
queryKey: [QUERY_KEYS.useGetDRepVotingPowerListKey, ...identifiers],
2222
queryFn: () => getDRepVotingPowerList(identifiers),
2323
});
2424

govtool/frontend/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1512,10 +1512,10 @@
15121512
resolved "https://registry.npmjs.org/@intersect.mbo/intersectmbo.org-icons-set/-/intersectmbo.org-icons-set-1.1.0.tgz"
15131513
integrity sha512-sjKEtnK9eLYH/8kCD0YRQCms3byFA/tnSsei9NHTZbBYX9sBpeX6ErfR0sKYjOSxQOxl4FumX9D0X+vHIqxo8g==
15141514

1515-
"@intersect.mbo/[email protected]10":
1516-
version "0.7.0-beta-10"
1517-
resolved "https://registry.npmjs.org/@intersect.mbo/pdf-ui/-/pdf-ui-0.7.0-beta-10.tgz"
1518-
integrity sha512-UWPQwNYdAFPte2zUXILhYYqoFCaai9X7EOF5AHafVPfOYBCieaK2EVgzx2XYUr8UukuHHouonlA+PPdOY1DGaQ==
1515+
"@intersect.mbo/[email protected]11":
1516+
version "0.7.0-beta-11"
1517+
resolved "https://registry.npmjs.org/@intersect.mbo/pdf-ui/-/pdf-ui-0.7.0-beta-11.tgz"
1518+
integrity sha512-amFT8stsOFMeFZjoTsCpUguUi2d/tlMZ4G/ARud1ewrRfjDvu6PJhGYlGl2gZBGa75GgvNM27hfEbzv7MDOInA==
15191519
dependencies:
15201520
"@emurgo/cardano-serialization-lib-asmjs" "^12.0.0-beta.2"
15211521
"@fontsource/poppins" "^5.0.14"

0 commit comments

Comments
 (0)