diff --git a/apps/web/components/ProposalCard.tsx b/apps/web/components/ProposalCard.tsx index 7e03dc3c6..a6b6e608e 100644 --- a/apps/web/components/ProposalCard.tsx +++ b/apps/web/components/ProposalCard.tsx @@ -256,7 +256,7 @@ export function ProposalCard({ /{memberPoolWeight}%{" "} - ({inputValue}% of your total support) + ({inputValue}% of your voting weight)

{/*

Support

*/} diff --git a/apps/web/components/Proposals.tsx b/apps/web/components/Proposals.tsx index 3a0f476b0..915b21908 100644 --- a/apps/web/components/Proposals.tsx +++ b/apps/web/components/Proposals.tsx @@ -386,13 +386,6 @@ export function Proposals({ { id: 2, name: "Voting weight used", - stat: calcPoolWeightUsed(memberSupportedProposalsPct), - className: poolWeightClassName, - info: "Indicates the portion of your pool weight currently allocated in proposals.", - }, - { - id: 3, - name: "Total support", stat: memberSupportedProposalsPct, className: `${ memberSupportedProposalsPct >= 100 ? @@ -591,34 +584,28 @@ function UserAllocationStats({ stats }: { stats: Stats[] }) { return (

Support Overview

-
+
{stats.map((stat) => ( -
-
-
- {stat.stat} % -
- +
+
+ {stat.stat} % +
+
-

+

{stat.name} -

+
-
-
-

{stat.stat} %

+

{stat.stat} %

))}