Front: remove Visible IDs

This commit is contained in:
Arthur Jamet
2023-12-22 10:28:55 +01:00
committed by Clément Le Bihan
parent 339e808d27
commit e85a959c26
5 changed files with 10 additions and 8 deletions
+5 -3
View File
@@ -89,9 +89,11 @@ const PlayViewControlBar = ({
<Text color={textColor[800]} fontSize={14} maxW={'100%'} isTruncated>
{song.name}
</Text>
<Text color={textColor[900]} fontSize={12} maxW={'100%'} isTruncated>
{song.artistId}
</Text>
{song.artist && (
<Text color={textColor[900]} fontSize={12} maxW={'100%'} isTruncated>
{song.artist?.name}
</Text>
)}
</View>
</View>
</View>