Fix provider text
This commit is contained in:
parent
75403078d2
commit
762644d23d
2 changed files with 4 additions and 4 deletions
|
@ -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) => (
|
||||
|
|
|
@ -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) => (
|
||||
|
|
Reference in a new issue