From ff96a5f121fc8a20e11920d1b30a321e9f616eba Mon Sep 17 00:00:00 2001 From: jeffvli Date: Mon, 6 Apr 2026 12:06:55 -0700 Subject: [PATCH] lint --- .../playlists/components/playlist-detail-song-list-header.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) => {