From 598361992ec9abda16ff4ab11cf44457abece729 Mon Sep 17 00:00:00 2001
From: Philipinho <16838612+Philipinho@users.noreply.github.com>
Date: Fri, 14 Mar 2025 22:40:35 +0000
Subject: [PATCH] fix trial days
---
apps/client/src/ee/billing/components/billing-trial.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/apps/client/src/ee/billing/components/billing-trial.tsx b/apps/client/src/ee/billing/components/billing-trial.tsx
index 4628ae00..ac0e4941 100644
--- a/apps/client/src/ee/billing/components/billing-trial.tsx
+++ b/apps/client/src/ee/billing/components/billing-trial.tsx
@@ -15,7 +15,7 @@ export default function BillingTrial() {
{trialDaysLeft > 0 && !billing && (
You have {trialDaysLeft} {trialDaysLeft === 1 ? "day" : "days"} left
- in your 14-day trial. Please subscribe to a plan before your trial
+ in your 7-day trial. Please subscribe to a plan before your trial
ends.
)}
@@ -23,7 +23,7 @@ export default function BillingTrial() {
{trialDaysLeft === 0 ||
(trialDaysLeft === null && !billing && (
- Your 14-day trial has come to an end. Please subscribe to a plan to
+ Your 7-day trial has come to an end. Please subscribe to a plan to
continue using this service.
))}