[web] Fix check
This commit is contained in:
parent
44403c94c2
commit
ba307b0dcd
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ export function isSubscriptionPastDue(subscription: Subscription) {
|
|||
return (
|
||||
!isSubscriptionCancelled(subscription) &&
|
||||
subscription.expiryTime < currentTime &&
|
||||
subscription.expiryTime > currentTime - THIRTY_DAYS_IN_MICROSECONDS
|
||||
subscription.expiryTime >= currentTime - THIRTY_DAYS_IN_MICROSECONDS
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue