From 104f663439a54afc08f36b195bdd4221e2384a12 Mon Sep 17 00:00:00 2001 From: Seven Date: Wed, 7 Jan 2026 12:56:05 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=BD=93=E5=89=8D=20U?= =?UTF-8?q?SDT=20=E4=BD=99=E9=A2=9D=E8=AE=A1=E7=AE=97=EF=BC=8C=E7=A1=AE?= =?UTF-8?q?=E4=BF=9D=E5=9C=A8=E4=BD=99=E9=A2=9D=E4=B8=8D=E5=AD=98=E5=9C=A8?= =?UTF-8?q?=E6=97=B6=E8=BF=94=E5=9B=9E=200?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/subscribe-rwa/index.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/subscribe-rwa/index.vue b/src/components/subscribe-rwa/index.vue index 1648df3..2663c76 100644 --- a/src/components/subscribe-rwa/index.vue +++ b/src/components/subscribe-rwa/index.vue @@ -13,8 +13,9 @@ const emit = defineEmits<{ const { t } = useI18n(); const walletStore = useWalletStore(); +await walletStore.syncFundingBalances(); const { fundingBalances } = storeToRefs(walletStore); -const currentUSDTBalance = computed(() => fundingBalances.value[0].available); +const currentUSDTBalance = computed(() => fundingBalances.value[0]?.available || 0); const num = ref(null);