Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -120,7 +120,6 @@ const getMessages = (
emptyPublic: `This ${collectionType} is empty`,
detailsPlaceholder: '---',
collectionType: `${isPremium ? 'premium ' : ''}${collectionType}`,
hiddenType: `Hidden ${collectionType}`,
play: 'Play',
pause: 'Pause',
resume: 'Resume',
Expand DownExpand Up@@ -258,7 +257,6 @@ export const CollectionScreenDetailsTile = ({
const playingTrackId = playingTrack?.track_id
const firstTrack = useSelector(selectFirstTrack)
const messages = getMessages(isAlbum ? 'album' : 'playlist', isStreamGated)
const headerText = isPrivate ? messages.hiddenType : messages.collectionType
const isPublished = !isPrivate || isPublishing
const isUnpublishedScheduledRelease =
isScheduledRelease && isPrivate && releaseDate
Expand DownExpand Up@@ -414,7 +412,7 @@ export const CollectionScreenDetailsTile = ({
textTransform='uppercase'
color='subdued'
>
{headerText}
{messages.collectionType}
</Text>

{badges.length > 0 ? (
Expand Down