Skip to content

Commit

Permalink
fix: add truncating for masked email address
Browse files Browse the repository at this point in the history
  • Loading branch information
ajyey committed Jun 26, 2023
1 parent 1a1412b commit 9f0e3d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/popup/components/home/detail/EmailAddress.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ function EmailAddress({
}`;
return (
<div className={containerStyle}>
<div>
<div className={'truncate'}>
<div
className="mt-1 ml-2 text-malibu font-normal text-detailLabel"
id="emailLabel"
>
email
</div>
<div className="ml-2 mb-1 font-normal text-white text-detailValue">
<div className="ml-2 mb-1 font-normal text-white text-detailValue truncate">
{emailAddress}
</div>
</div>
Expand Down

0 comments on commit 9f0e3d4

Please sign in to comment.