Skip to content

Commit

Permalink
fix: Typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
garethfuller committed Nov 4, 2024
1 parent c82a3f5 commit b16e4f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/components/contextual/pages/vebal/MyVeBAL/MyVeBAL.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ const {
* COMPUTED
*/
const isLoading = computed(
() => isLoadingLockPool.value || isLoadingLockInfo.value
);
const isLoading = computed(() => isLoadingLockPool || isLoadingLockInfo.value);
</script>

<template>
Expand Down
2 changes: 1 addition & 1 deletion src/components/contextual/pages/vebal/MyVebalInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const isLoadingData = computed(() => {
isLoadingLockBoard.value ||
isLoading.value ||
isLoadingLockInfo.value ||
isLoadingLockPool.value ||
isLoadingLockPool ||
isLoadingVebalBalance.value
);
});
Expand Down

0 comments on commit b16e4f1

Please sign in to comment.