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 /> <FullScreenSimilarSongs />
</div> </div>
) : activeTab === 'lyrics' ? ( ) : activeTab === 'lyrics' ? (
<Lyrics /> <Lyrics fadeOutNoLyricsMessage={false} />
) : activeTab === 'visualizer' && type === PlayerType.WEB && webAudio ? ( ) : activeTab === 'visualizer' && type === PlayerType.WEB && webAudio ? (
<Suspense fallback={<></>}> <Suspense fallback={<></>}>
{visualizerType === 'butterchurn' ? ( {visualizerType === 'butterchurn' ? (
@@ -556,7 +556,7 @@ export const MobileFullscreenPlayer = () => {
/> />
</div> </div>
<div className={styles.lyricsContent}> <div className={styles.lyricsContent}>
<Lyrics /> <Lyrics fadeOutNoLyricsMessage={false} />
</div> </div>
</motion.div> </motion.div>
)} )}