1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-20 09:35:22 +02:00

Fix SM beta grace period dates (#6054)

This commit is contained in:
Thomas Rittson 2023-08-18 08:47:03 +10:00 committed by GitHub
parent 70f115c8f5
commit 1b32cddbad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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>();