We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62a879d commit cb8a0cbCopy full SHA for cb8a0cb
1 file changed
web/src/modules/song/components/SongPage.tsx
@@ -91,7 +91,9 @@ export async function SongPage({ id }: { id: string }) {
91
<div className='flex-grow'></div>
92
<div className='flex flex-row gap-4 overflow-x-auto'>
93
{/* <LikeButton /> */}
94
- <ShareButton songId={song.publicId} />
+ {song.visibility !== 'private' && (
95
+ <ShareButton songId={song.publicId} />
96
+ )}
97
<OpenSongInNBSButton song={song} />
98
<DownloadSongButton song={song} />
99
</div>
0 commit comments