+
{{ balanceError.message }}
@@ -111,7 +111,6 @@ import { ArrowDownIcon, ArrowsRightLeftIcon, PaperAirplaneIcon } from "@heroicon
import { storeToRefs } from "pinia";
import useInterval from "@/composables/useInterval";
-import useSingleLoading from "@/composables/useSingleLoading";
import { useDestinationsStore } from "@/store/destinations";
import { useOnboardStore } from "@/store/onboard";
@@ -138,9 +137,7 @@ const displayedBalances = computed(() => {
});
});
-const { loading, reset: resetSingleLoading } = useSingleLoading(
- computed(() => balanceInProgress.value || !allBalancePricesLoaded.value)
-);
+const loading = computed(() => balanceInProgress.value || !allBalancePricesLoaded.value);
const isFaucetDisplayed = computed(() => {
if (loading.value) return false;
if (eraNetwork.value.faucetUrl) {
@@ -160,7 +157,6 @@ const { reset: resetAutoUpdate, stop: stopAutoUpdate } = useInterval(() => {
const unsubscribe = onboardStore.subscribeOnAccountChange((newAddress) => {
if (!newAddress) return;
- resetSingleLoading();
resetAutoUpdate();
fetch();
});
diff --git a/views/zksync/era/payments/Index.vue b/views/zksync/era/payments/Index.vue
index 6b4aba39c..894da9349 100644
--- a/views/zksync/era/payments/Index.vue
+++ b/views/zksync/era/payments/Index.vue
@@ -20,11 +20,11 @@
Transactions
View all
-
+
-
+
{{ recentTransfersRequestError.message }}
diff --git a/views/zksync/lite/Assets.vue b/views/zksync/lite/Assets.vue
index 534d62920..73658b7d6 100644
--- a/views/zksync/lite/Assets.vue
+++ b/views/zksync/lite/Assets.vue
@@ -29,11 +29,11 @@
Balances
View all
-
+
-
+
{{ balanceError.message }}
diff --git a/views/zksync/lite/payments/Index.vue b/views/zksync/lite/payments/Index.vue
index 1a98e3a59..c9b9bdc14 100644
--- a/views/zksync/lite/payments/Index.vue
+++ b/views/zksync/lite/payments/Index.vue
@@ -30,11 +30,11 @@
Transactions
View all
-
+
-
+
{{ recentTransactionsRequestError.message }}
diff --git a/views/zksync/lite/transactions/Transfer.vue b/views/zksync/lite/transactions/Transfer.vue
index fffefe3cc..3b61df9b8 100644
--- a/views/zksync/lite/transactions/Transfer.vue
+++ b/views/zksync/lite/transactions/Transfer.vue
@@ -409,7 +409,7 @@ onBeforeUnmount(() => {
}
}
.change-fee-token-button {
- @apply ml-2 mt-1 flex w-max cursor-pointer items-center rounded bg-primary-100/50 py-1 px-1.5 text-xs font-medium text-primary-400 transition-colors hover:bg-primary-100 xs:-mr-4 xs:mt-0;
+ @apply ml-2 mt-1 flex w-max cursor-pointer items-center rounded bg-primary-100/50 px-1.5 py-1 text-xs font-medium text-primary-400 transition-colors hover:bg-primary-100 xs:-mr-4 xs:mt-0;
@apply dark:bg-primary-300 dark:text-white dark:hover:bg-primary-200;
.change-fee-token-icon {