prevent no lyrics message fade out on fullscreen player (#1821)

This commit is contained in:
jeffvli
2026-03-11 01:00:32 -07:00
parent 17a4a14a4e
commit f51d3d5711
2 changed files with 2 additions and 2 deletions
@@ -118,7 +118,7 @@ export const FullScreenPlayerQueue = () => {
<FullScreenSimilarSongs />
</div>
) : activeTab === 'lyrics' ? (
<Lyrics />
<Lyrics fadeOutNoLyricsMessage={false} />
) : activeTab === 'visualizer' && type === PlayerType.WEB && webAudio ? (
<Suspense fallback={<></>}>
{visualizerType === 'butterchurn' ? (
@@ -556,7 +556,7 @@ export const MobileFullscreenPlayer = () => {
/>
</div>
<div className={styles.lyricsContent}>
<Lyrics />
<Lyrics fadeOutNoLyricsMessage={false} />
</div>
</motion.div>
)}