remove remote requirement for lyrics match display

This commit is contained in:
jeffvli
2026-07-10 11:32:46 -07:00
parent 7c1893f7f5
commit 964e6f491a
3 changed files with 9 additions and 12 deletions
@@ -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 && (
<LyricLine
alignment={settings.alignment}
className="lyric-credit"
fontSize={settings.fontSize}
text={`"${name} by ${artist}"`}
text={`${name} ${artist}`}
/>
)}
{normalizedLyrics.map((rawLine, idx) => {