Skip to content

Commit

Permalink
[PAY-2473] Change 'original' copy to 'lossless' in download section (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
dharit-tan authored Feb 8, 2024
1 parent 94967d5 commit 225fe2c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/mobile/src/screens/track-screen/DownloadSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const messages = {
title: 'Stems & Downloads',
choose: 'Choose File Quality',
mp3: 'MP3',
original: 'Original',
lossless: 'Lossless',
downloadAll: 'Download All',
unlockAll: (price: string) => `Unlock All $${price}`,
purchased: 'purchased',
Expand Down Expand Up @@ -204,7 +204,7 @@ export const DownloadSection = ({ trackId }: { trackId: ID }) => {
},
{
key: DownloadQuality.ORIGINAL,
text: messages.original
text: messages.lossless
}
]

Expand Down
4 changes: 2 additions & 2 deletions packages/web/src/components/track/DownloadSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const messages = {
title: 'Stems & Downloads',
choose: 'Choose File Quality',
mp3: 'MP3',
original: 'Original',
lossless: 'Lossless',
downloadAll: 'Download All',
unlockAll: (price: string) => `Unlock All $${price}`,
purchased: 'purchased',
Expand Down Expand Up @@ -170,7 +170,7 @@ export const DownloadSection = ({ trackId }: DownloadSectionProps) => {
},
{
key: DownloadQuality.ORIGINAL,
text: messages.original
text: messages.lossless
}
]

Expand Down

0 comments on commit 225fe2c

Please sign in to comment.