Skip to content

Commit

Permalink
let to const
Browse files Browse the repository at this point in the history
  • Loading branch information
ernstmul committed Nov 13, 2024
1 parent 1971453 commit 476df58
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
const extraMembers = members.total > 1 ? members.total - 1 : 0;
const availableCredit = creditList.available;
const today = new Date();
let isTrial =
const isTrial =
new Date($organization?.billingStartDate).getTime() - today.getTime() > 0 &&
$plansInfo.get($organization.billingPlan)?.trialDays;
const extraUsage = currentInvoice.amount - currentPlan?.price;
Expand Down

0 comments on commit 476df58

Please sign in to comment.