diff --git a/packages/app/src/components/BackgroundMediaPlayer/index.jsx b/packages/app/src/components/BackgroundMediaPlayer/index.jsx
index 136f60f5..bb149143 100644
--- a/packages/app/src/components/BackgroundMediaPlayer/index.jsx
+++ b/packages/app/src/components/BackgroundMediaPlayer/index.jsx
@@ -124,7 +124,9 @@ export default class BackgroundMediaPlayer extends React.Component {
>
{
- this.state.plabackState === "stopped" ? "Nothing is playing" : (this.state.currentPlaying?.title ?? "Untitled")
+ this.state.plabackState === "stopped" ? "Nothing is playing" : <>
+ {`${this.state.currentPlaying?.title} - ${this.state.currentPlaying?.artist}` ?? "Untitled"}
+ >
}
@@ -134,10 +136,17 @@ export default class BackgroundMediaPlayer extends React.Component {
{
- this.state.plabackState === "stopped" ? "Nothing is playing" : (this.state.currentPlaying?.title ?? "Untitled")
+ this.state.plabackState === "stopped" ? "Nothing is playing" : <>
+ {this.state.currentPlaying?.title ?? "Untitled"}
+ >
}
}
+ {/* {
+ this.state.expanded &&
+ {this.state.currentPlaying?.artist ?? "Unknown artist"}
+
+ } */}