Small change on the renew column badge for disabled options

This commit is contained in:
Carlos Monastyrski
2025-10-27 09:47:09 -03:00
parent fe2d57154b
commit 8f96ffa7c8

View File

@@ -115,7 +115,7 @@ const getAutoRenewalInfo = (certificate: TCertificate) => {
}
if (!certificate.renewBeforeDays) {
return { text: "Disabled", variant: "primary" as const };
return { text: "Auto-Renewal Disabled", variant: "primary" as const };
}
const notAfterDate = new Date(certificate.notAfter);