Skip to content

Commit

Permalink
HRINT-3844 - show the subscription expiration date in the expired view
Browse files Browse the repository at this point in the history
  • Loading branch information
grisha-kotler committed Nov 26, 2024
1 parent 83706ff commit 9b108ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class registration extends dialogViewModelBase {
error += `: ${licenseStatus.ErrorMessage}`;
}
} else if (licenseStatus.Expired) {
const expiration = moment(licenseStatus.Expiration);
const expiration = moment(licenseStatus.SubscriptionExpiration);
error = "License has expired";
if (expiration.isValid()) {
error += ` on ${expiration.format("YYYY MMMM Do")}`;
Expand Down

0 comments on commit 9b108ee

Please sign in to comment.