Remove unused or non-existent class names

This commit is contained in:
danidfra 2024-11-06 02:36:03 -03:00
parent b8bffb8f3e
commit a0c194c193
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ const VerificationBadge: React.FC<IVerificationBadge> = ({ className }) => {
const Element = icon.endsWith('.svg') ? Icon : 'img'; const Element = icon.endsWith('.svg') ? Icon : 'img';
return ( return (
<span className='verified-icon' data-testid='verified-badge'> <span data-testid='verified-badge'>
<Element className={clsx('w-4 text-accent-500', className)} src={icon} alt={intl.formatMessage(messages.verified)} /> <Element className={clsx('w-4 text-accent-500', className)} src={icon} alt={intl.formatMessage(messages.verified)} />
</span> </span>
); );