Skip to content

Commit

Permalink
removed tooltip from attestation card description field
Browse files Browse the repository at this point in the history
  • Loading branch information
satyajeetkolhapure committed Oct 29, 2024
1 parent cf06607 commit 6ea7efb
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,7 @@ export const AttestationCard: React.FC<IAttestationCardProps> = ({
</div>
{description && description.trim() ? (
<div className="text-sm font-normal text-text-darkGrey dark:text-tertiary mt-4">
{isDescriptionLong ? (
<Tooltip content={description} isDarkMode={isDarkMode}>
{truncatedDescription}
</Tooltip>
) : (
<span>{description}</span>
)}
<span>{truncatedDescription}</span>
</div>
) : null}
</div>
Expand Down

0 comments on commit 6ea7efb

Please sign in to comment.