From 541ff2df93c642c16d3aa6c7db5704aceb3ca523 Mon Sep 17 00:00:00 2001 From: openhands Date: Tue, 24 Feb 2026 18:41:37 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20WalletCard.vue=20queries=20wrong=20Graph?= =?UTF-8?q?QL=20field=20(`protocolStatss`=20=E2=86=92=20`statss`)=20(#217)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- landing/src/components/WalletCard.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/landing/src/components/WalletCard.vue b/landing/src/components/WalletCard.vue index c39dba3..b5bff91 100644 --- a/landing/src/components/WalletCard.vue +++ b/landing/src/components/WalletCard.vue @@ -28,7 +28,7 @@ async function fetchWalletData(addr: string) { totalEthSpent totalTokensAcquired } - protocolStatss(where: { id: "0x01" }) { + statss(where: { id: "0x01" }) { items { currentPriceWei } } }`, @@ -37,7 +37,7 @@ async function fetchWalletData(addr: string) { }); const json = await res.json(); holder.value = json?.data?.holders ?? null; - stats.value = json?.data?.protocolStatss?.items?.[0] ?? null; + stats.value = json?.data?.statss?.items?.[0] ?? null; } catch { holder.value = null; } finally {