Remove semicolon and replace it with ,

This commit is contained in:
Nicholas
2021-06-20 11:46:28 +01:00
parent ccbc3a7aaf
commit 16ea7c3b1a

View File

@@ -256,7 +256,7 @@ const renderCard = async (body: LanyardTypes.Root, params: Parameters): Promise<
">
<p style="font-size: 0.75rem; color: #1CB853; margin-bottom: 20px;">LISTENING NOW...</p>
<p style="color: ${theme === 'dark' ? '#fff' : '#000'}; font-weight: bold;">${body.data.spotify.song}</p>
<p style="color: ${theme === 'dark' ? '#ccc' : '#777'}">${body.data.spotify.artist}</p>
<p style="color: ${theme === 'dark' ? '#ccc' : '#777'}">By ${body.data.spotify.artist.replaceAll(";", ",")}</p>
</div>
</div>
`