Merge pull request #1227 from buster-so/big-nate-bus-2014-add-to-collection-bolding-is-off

Update AddToCollectionModal.tsx
This commit is contained in:
Nate Kelley 2025-09-30 15:54:47 -06:00 committed by GitHub
commit 0ba5d7ee94
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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"> <span className="text-icon-color">
<Icon /> <Icon />
</span> </span>
<Text>{name}</Text> <Text>
{/* biome-ignore lint/security/noDangerouslySetInnerHtml: this endpoint is sanitized */}
<span dangerouslySetInnerHTML={{ __html: name }}></span>
</Text>
</div> </div>
); );
}, },