diff --git a/src/renderer/features/playlists/components/playlist-detail-song-list-header.tsx b/src/renderer/features/playlists/components/playlist-detail-song-list-header.tsx index 84f0117d9..6def3ffaa 100644 --- a/src/renderer/features/playlists/components/playlist-detail-song-list-header.tsx +++ b/src/renderer/features/playlists/components/playlist-detail-song-list-header.tsx @@ -126,7 +126,8 @@ export const PlaylistDetailSongListHeader = ({ }; const canUploadPlaylistImage = - hasFeature(server, ServerFeature.PLAYLIST_IMAGE_UPLOAD) && Boolean(detailQuery?.data?._serverId); + hasFeature(server, ServerFeature.PLAYLIST_IMAGE_UPLOAD) && + Boolean(detailQuery?.data?._serverId); const handlePlaylistImageUpload = useCallback( async (file: File) => {