fix: Wrap icon with span for title
Some checks failed
CI / Frontend Lint & Type Check (push) Has been cancelled
CI / Frontend Build (push) Has been cancelled
CI / Backend Lint (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Docker Build (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
Deploy / Build & Push Images (push) Has been cancelled
Deploy / Deploy to Server (push) Has been cancelled
Deploy / Notify (push) Has been cancelled

This commit is contained in:
2025-12-10 20:21:45 +01:00
parent e7f59b2163
commit e4e85b380c

View File

@ -575,10 +575,9 @@ export default function CommandTldDetailPage() {
${registrar.renewal_price.toFixed(2)} ${registrar.renewal_price.toFixed(2)}
</span> </span>
{hasRenewalTrap && ( {hasRenewalTrap && (
<AlertTriangle <span title={`Renewal trap: ${(registrar.renewal_price / registrar.registration_price).toFixed(1)}x registration price`}>
className="w-3.5 h-3.5 text-amber-400 cursor-help" <AlertTriangle className="w-3.5 h-3.5 text-amber-400 cursor-help" />
title={`Renewal trap: ${(registrar.renewal_price / registrar.registration_price).toFixed(1)}x registration price`} </span>
/>
)} )}
</div> </div>
</td> </td>