Fix provider text

This commit is contained in:
jeffvli 2023-06-09 04:09:46 -07:00 committed by Jeff
parent 75403078d2
commit 762644d23d
2 changed files with 4 additions and 4 deletions

View file

@ -259,13 +259,13 @@ export const SynchronizedLyrics = ({
{source && (
<LyricLine
className="lyric-credit"
text={`Lyrics provided by ${source}`}
text={`Provided by ${source}`}
/>
)}
{remote && (
<LyricLine
className="lyric-credit"
text={`(Matched as ${artist} by ${name})`}
text={`"${name} by ${artist}"`}
/>
)}
{lyrics.map(([, text], idx) => (

View file

@ -27,13 +27,13 @@ export const UnsynchronizedLyrics = ({
{source && (
<LyricLine
className="lyric-credit"
text={`Lyrics provided by ${source}`}
text={`Provided by ${source}`}
/>
)}
{remote && (
<LyricLine
className="lyric-credit"
text={`(Matched as ${artist} by ${name})`}
text={`"${name} by ${artist}"`}
/>
)}
{lines.map((text, idx) => (