fix links in album description

This commit is contained in:
jeffvli
2025-12-22 20:43:26 -08:00
parent ac3dcb5e17
commit a67ae50d16
3 changed files with 7 additions and 9 deletions
@@ -98,7 +98,11 @@ const formatArtists = (artists: null | RelatedArtist[] | undefined) =>
));
const formatComment = (item: Album | Song) =>
item.comment ? <Spoiler maxHeight={50}>{replaceURLWithHTMLLinks(item.comment)}</Spoiler> : null;
item.comment ? (
<Spoiler maxHeight={50}>
<Text>{replaceURLWithHTMLLinks(item.comment)}</Text>
</Spoiler>
) : null;
const FormatGenre = (item: Album | AlbumArtist | Playlist | Song) => {
if (!item.genres?.length) {