diff --git a/src/components/topbar/CurrentUserPopoverWorkspace.vue b/src/components/topbar/CurrentUserPopoverWorkspace.vue index 74e8425bf..64ea81191 100644 --- a/src/components/topbar/CurrentUserPopoverWorkspace.vue +++ b/src/components/topbar/CurrentUserPopoverWorkspace.vue @@ -254,9 +254,6 @@ const isLoadingBalance = isLoading const displayedCredits = computed(() => { if (initState.value !== 'ready') return '' - // Wait for subscription to load - if (subscription.value === null) return '' - if (!isActiveSubscription.value) return '0' // API field is named _micros but contains cents (naming inconsistency) const cents = @@ -343,9 +340,7 @@ const toggleWorkspaceSwitcher = (event: MouseEvent) => { } const refreshBalance = () => { - if (isActiveSubscription.value) { - void fetchBalance() - } + void fetchBalance() } defineExpose({ refreshBalance })