Browse Source

Fix SM beta grace period dates (#6054)

pull/6061/head
Thomas Rittson 2 years ago committed by GitHub
parent
commit
1b32cddbad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      apps/web/src/app/billing/organizations/organization-subscription-cloud.component.ts

4
apps/web/src/app/billing/organizations/organization-subscription-cloud.component.ts

@ -47,8 +47,8 @@ export class OrganizationSubscriptionCloudComponent implements OnInit, OnDestroy @@ -47,8 +47,8 @@ export class OrganizationSubscriptionCloudComponent implements OnInit, OnDestroy
firstLoaded = false;
loading: boolean;
private readonly _smBetaEndingDate = new Date(2023, 7, 25);
private readonly _smGracePeriodEndingDate = new Date(2023, 9, 24);
private readonly _smBetaEndingDate = new Date(2023, 7, 15);
private readonly _smGracePeriodEndingDate = new Date(2023, 10, 14);
private destroy$ = new Subject<void>();

Loading…
Cancel
Save