From b16e4f173a679c248992b835282b21850696b5ff Mon Sep 17 00:00:00 2001 From: Gareth Fuller Date: Mon, 4 Nov 2024 14:08:36 +0000 Subject: [PATCH] fix: Typecheck --- src/components/contextual/pages/vebal/MyVeBAL/MyVeBAL.vue | 4 +--- src/components/contextual/pages/vebal/MyVebalInfo.vue | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/components/contextual/pages/vebal/MyVeBAL/MyVeBAL.vue b/src/components/contextual/pages/vebal/MyVeBAL/MyVeBAL.vue index cd77428492..e18943df20 100644 --- a/src/components/contextual/pages/vebal/MyVeBAL/MyVeBAL.vue +++ b/src/components/contextual/pages/vebal/MyVeBAL/MyVeBAL.vue @@ -21,9 +21,7 @@ const { * COMPUTED */ -const isLoading = computed( - () => isLoadingLockPool.value || isLoadingLockInfo.value -); +const isLoading = computed(() => isLoadingLockPool || isLoadingLockInfo.value);