From 132ac92984439f83724dd35d62217641c4f9feba Mon Sep 17 00:00:00 2001
From: Kendall Garner <17521368+kgarner7@users.noreply.github.com>
Date: Sat, 4 Apr 2026 14:46:13 -0700
Subject: [PATCH] chore: use consistent order of track / artist / ablum on full
screen page
---
.../components/full-screen-player-image.tsx | 38 +++++++++----------
1 file changed, 19 insertions(+), 19 deletions(-)
diff --git a/src/renderer/features/player/components/full-screen-player-image.tsx b/src/renderer/features/player/components/full-screen-player-image.tsx
index 588010ead..c674d36e8 100644
--- a/src/renderer/features/player/components/full-screen-player-image.tsx
+++ b/src/renderer/features/player/components/full-screen-player-image.tsx
@@ -269,25 +269,7 @@ export const FullScreenPlayerImage = () => {
? radioMetadata?.title || stationName || 'Radio'
: currentSong?.name}
- {isPlayingRadio ? (
-
- {stationName || 'Radio'}
-
- ) : (
-
- {currentSong?.album}
-
- )}
-
+
{isPlayingRadio
? radioMetadata?.artist || stationName || 'Radio'
: currentSong?.artists?.map((artist, index) => (
@@ -314,6 +296,24 @@ export const FullScreenPlayerImage = () => {
))}
+ {isPlayingRadio ? (
+
+ {stationName || 'Radio'}
+
+ ) : (
+
+ {currentSong?.album}
+
+ )}
{!isPlayingRadio && (
{playerItems.map((i) => !i.disabled && builtDataItems[i.id])}