Skip to content

Commit

Permalink
fix(justVerified): typo in expiry date
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony23991 committed Feb 6, 2025
1 parent 51ecfbf commit 638347c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ export interface SelectCredentialItemProps {
selectedCredential: Credentials | undefined;
onClick: () => void;
credentialValue:
| EthereumEip712Signature2021<{ username?: string; email?: string }>
| undefined;
| EthereumEip712Signature2021<{ username?: string; email?: string }>
| undefined;
disabled?: boolean;
}

Expand Down Expand Up @@ -78,7 +78,7 @@ export const SelectCredentialItem: FC<SelectCredentialItemProps> = ({
(username ? `: ${username}` : '')
}
subtitle={
username ? 'Expires in ' + moment(expirationDate).fromNow() : undefined
username ? 'Expires ' + moment(expirationDate).fromNow() : undefined
}
onClick={onClick}
left={icon}
Expand Down

0 comments on commit 638347c

Please sign in to comment.