From 0e05e708233b2ebb89ded55d9e96a17378e33e80 Mon Sep 17 00:00:00 2001 From: Deluan Date: Sat, 25 Jul 2026 23:46:57 -0400 Subject: [PATCH] fix(ui): remove Artwork rendering gate Signed-off-by: Deluan --- ui/src/artist/DesktopArtistDetails.jsx | 14 ++++++-------- ui/src/artist/MobileArtistDetails.jsx | 16 +++++++--------- 2 files changed, 13 insertions(+), 17 deletions(-) diff --git a/ui/src/artist/DesktopArtistDetails.jsx b/ui/src/artist/DesktopArtistDetails.jsx index bdeee2cb7..9269dc8d7 100644 --- a/ui/src/artist/DesktopArtistDetails.jsx +++ b/ui/src/artist/DesktopArtistDetails.jsx @@ -89,14 +89,12 @@ const DesktopArtistDetails = ({ artistInfo, record, biography }) => {
- {artistInfo && ( - setLightboxOpen(true)} - /> - )} + setLightboxOpen(true)} + /> { +const MobileArtistDetails = ({ biography, record }) => { const img = subsonic.getCoverArtUrl(record, 800) const [expanded, setExpanded] = useState(false) const classes = useStyles({ img, expanded }) @@ -92,14 +92,12 @@ const MobileArtistDetails = ({ artistInfo, biography, record }) => {
- {artistInfo && ( - setLightboxOpen(true)} - /> - )} + setLightboxOpen(true)} + />