Skip to content

Commit

Permalink
expiring soon checks if enbaled auto renewal
Browse files Browse the repository at this point in the history
  • Loading branch information
emarc99 committed Dec 17, 2024
1 parent 37262ae commit b4827c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/identities/identitiesGalleryV1.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const IdentitiesGalleryV1: FunctionComponent<IdentitiesGalleryV1Props> = ({
<ErrorIcon color="error" />
</Tooltip>
</div>
) : isExpiringSoon ? (
) : isExpiringSoon && needAutoRenewal?.includes(identity.domain) ? (
<div className={styles.expiryWarning}>
<Tooltip title={`This domain is expiring soon on ${expiryDate}`} arrow>
<ErrorIcon color="warning" />
Expand Down

0 comments on commit b4827c4

Please sign in to comment.