This commit is contained in:
Philipinho
2025-03-14 23:02:42 +00:00
parent 96dfe9f817
commit d021d0a38f
2 changed files with 7 additions and 8 deletions

View File

@ -20,13 +20,12 @@ export default function BillingTrial() {
</Alert>
)}
{trialDaysLeft === 0 ||
(trialDaysLeft === null && !billing && (
<Alert title="Your Trial has ended" color="red" radius="md">
Your 7-day trial has come to an end. Please subscribe to a plan to
continue using this service.
</Alert>
))}
{trialDaysLeft === 0 && (
<Alert title="Your Trial has ended" color="red" radius="md">
Your 7-day trial has come to an end. Please subscribe to a plan to
continue using this service.
</Alert>
)}
</>
);
}