From 9cf74a0a58382190f4c7ef66a2f81870e6d6aadd Mon Sep 17 00:00:00 2001 From: Tanmay Deep Sharma Date: Mon, 1 Dec 2025 21:31:21 +0530 Subject: [PATCH] remove renew on if plan is hacker --- .../dashboard/routes/dashboard/settings/billing/Index.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/javascript/dashboard/routes/dashboard/settings/billing/Index.vue b/app/javascript/dashboard/routes/dashboard/settings/billing/Index.vue index 7243d9513..b65e7fb7d 100644 --- a/app/javascript/dashboard/routes/dashboard/settings/billing/Index.vue +++ b/app/javascript/dashboard/routes/dashboard/settings/billing/Index.vue @@ -79,7 +79,9 @@ const subscriptionEndsAt = computed(() => { const subscriptionCancelledAt = computed(() => { if (!customAttributes.value.subscription_cancelled_at) return ''; - const cancelledDate = new Date(customAttributes.value.subscription_cancelled_at); + const cancelledDate = new Date( + customAttributes.value.subscription_cancelled_at + ); return format(cancelledDate, 'dd MMM, yyyy'); }); @@ -333,6 +335,7 @@ onMounted(handleBillingPageLogic); />