From a91c1941611c87d3d079d0002803c862c71645a5 Mon Sep 17 00:00:00 2001 From: Julien Nahum Date: Mon, 27 Jan 2025 11:37:36 +0100 Subject: [PATCH] Update Billing Tab Condition in Settings Page Change the condition for displaying the Billing tab from checking user subscription status to verifying the presence of a customer ID --- client/pages/settings.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/pages/settings.vue b/client/pages/settings.vue index 7b373f6b..a86168f6 100644 --- a/client/pages/settings.vue +++ b/client/pages/settings.vue @@ -87,7 +87,7 @@ const tabsList = computed(() => { }, ] - if (user?.value?.is_subscribed) { + if (user?.value?.has_customer_id) { tabs.splice(1, 0, { name: "Billing", route: "settings-billing",