diff --git a/src/renderer/features/lyrics/synchronized-karaoke-lyrics.tsx b/src/renderer/features/lyrics/synchronized-karaoke-lyrics.tsx index 317cb80c1..65e9b46c1 100644 --- a/src/renderer/features/lyrics/synchronized-karaoke-lyrics.tsx +++ b/src/renderer/features/lyrics/synchronized-karaoke-lyrics.tsx @@ -50,7 +50,6 @@ export const SynchronizedKaraokeLyrics = ({ name, offsetMs, pronunciationLyrics, - remote, romajiLyrics, settingsKey = 'default', source, @@ -308,15 +307,15 @@ export const SynchronizedKaraokeLyrics = ({ alignment={settings.alignment} className="lyric-credit" fontSize={settings.fontSize} - text={`Provided by ${source}`} + text={`${source}`} /> )} - {settings.showMatch && remote && ( + {settings.showMatch && ( )} {normalizedLyrics.map((rawLine, idx) => { diff --git a/src/renderer/features/lyrics/synchronized-lyrics.tsx b/src/renderer/features/lyrics/synchronized-lyrics.tsx index 86e29a172..a28ab9d49 100644 --- a/src/renderer/features/lyrics/synchronized-lyrics.tsx +++ b/src/renderer/features/lyrics/synchronized-lyrics.tsx @@ -44,7 +44,6 @@ export const SynchronizedLyrics = ({ name, offsetMs, pronunciationLyrics, - remote, romajiLyrics, settingsKey = 'default', source, @@ -253,15 +252,15 @@ export const SynchronizedLyrics = ({ alignment={settings.alignment} className="lyric-credit" fontSize={settings.fontSize} - text={`Provided by ${source}`} + text={`${source}`} /> )} - {settings.showMatch && remote && ( + {settings.showMatch && ( )} {normalizedLyrics.map((rawLine, idx) => { diff --git a/src/renderer/features/lyrics/unsynchronized-lyrics.tsx b/src/renderer/features/lyrics/unsynchronized-lyrics.tsx index 6b40b4f08..5ae3d1b7d 100644 --- a/src/renderer/features/lyrics/unsynchronized-lyrics.tsx +++ b/src/renderer/features/lyrics/unsynchronized-lyrics.tsx @@ -18,7 +18,6 @@ export const UnsynchronizedLyrics = ({ artist, lyrics, name, - remote, romajiLyrics, settingsKey = 'default', source, @@ -62,15 +61,15 @@ export const UnsynchronizedLyrics = ({ alignment={settings.alignment} className="lyric-credit" fontSize={settings.fontSizeUnsync} - text={`Provided by ${source}`} + text={`${source}`} /> )} - {settings.showMatch && remote && ( + {settings.showMatch && ( )} {lines.map((text, idx) => (