From 964e6f491a3c5ea1cad910de2420a2a43c148917 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Fri, 10 Jul 2026 11:32:46 -0700 Subject: [PATCH] remove remote requirement for lyrics match display --- .../features/lyrics/synchronized-karaoke-lyrics.tsx | 7 +++---- src/renderer/features/lyrics/synchronized-lyrics.tsx | 7 +++---- src/renderer/features/lyrics/unsynchronized-lyrics.tsx | 7 +++---- 3 files changed, 9 insertions(+), 12 deletions(-) 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) => (