Update AddToCollectionModal.tsx

This commit is contained in:
Nate Kelley 2025-09-30 15:54:27 -06:00
parent db2744f93d
commit fceb450deb
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
1 changed files with 4 additions and 1 deletions

View File

@ -55,7 +55,10 @@ export const AddToCollectionModal: React.FC<{
<span className="text-icon-color">
<Icon />
</span>
<Text>{name}</Text>
<Text>
{/* biome-ignore lint/security/noDangerouslySetInnerHtml: this endpoint is sanitized */}
<span dangerouslySetInnerHTML={{ __html: name }}></span>
</Text>
</div>
);
},