diff --git a/apps/web/components/ProposalCard.tsx b/apps/web/components/ProposalCard.tsx
index bd83e9ba5..c9ce5a230 100644
--- a/apps/web/components/ProposalCard.tsx
+++ b/apps/web/components/ProposalCard.tsx
@@ -49,7 +49,7 @@ export type ProposalCardProps = {
poolToken?: FetchTokenResult;
isAllocationView: boolean;
memberActivatedPoints: bigint;
- memberPoolWeight: number;
+ memberPoolWeight?: number;
executeDisabled: boolean;
tokenDecimals: number;
alloInfo: Allo;
diff --git a/apps/web/components/Proposals.tsx b/apps/web/components/Proposals.tsx
index 7dc5a20a4..8827eb85f 100644
--- a/apps/web/components/Proposals.tsx
+++ b/apps/web/components/Proposals.tsx
@@ -483,7 +483,7 @@ export function Proposals({
{allocationView && }
- {proposals && inputs && memberPoolWeight != null ?
+ {proposals && inputs ?
<>
{proposals
.filter(
@@ -500,7 +500,7 @@ export function Proposals({
stakedFilter={stakedFilters[proposalData.id]}
isAllocationView={allocationView}
memberActivatedPoints={memberActivatedPoints}
- memberPoolWeight={memberPoolWeight ?? 0}
+ memberPoolWeight={memberPoolWeight}
executeDisabled={
proposalData.proposalStatus == 4 ||
!isConnected ||
diff --git a/pkg/subgraph/src/scripts/list-proxies.cjs b/pkg/subgraph/src/scripts/list-proxies.cjs
index 834150a7e..6735cba83 100644
--- a/pkg/subgraph/src/scripts/list-proxies.cjs
+++ b/pkg/subgraph/src/scripts/list-proxies.cjs
@@ -4,7 +4,7 @@ const subgraphConfig = require("../../../../apps/web/configs/subgraph.json");
const localhostSubgraph = "http://localhost:8000/subgraphs/name/kamikazebr/gv2";
const arbitrumSepoliaSubgraph =
- "https://api.studio.thegraph.com/query/40931/gardens-v2---arbitrum-sepolia/" +
+ "https://api.studio.thegraph.com/query/70985/gardens-v2---arbitrum-sepolia/" +
subgraphConfig.VERSION_TESTNET;
const arbitrumSubgraph =