From 861fcec14f1ac79f4997f08541c6ec6c9abcd696 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Tue, 3 Jan 2023 11:48:02 -0800 Subject: [PATCH] Change playlist detail bg calc algorithm --- .../features/playlists/routes/playlist-detail-route.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/features/playlists/routes/playlist-detail-route.tsx b/src/renderer/features/playlists/routes/playlist-detail-route.tsx index 1d757926..3d8e2d66 100644 --- a/src/renderer/features/playlists/routes/playlist-detail-route.tsx +++ b/src/renderer/features/playlists/routes/playlist-detail-route.tsx @@ -21,7 +21,7 @@ const PlaylistDetailRoute = () => { const background = useFastAverageColor( detailQuery?.data?.imageUrl, !detailQuery?.isLoading, - 'dominant', + 'sqrt', ); const handlePlayQueueAdd = usePlayQueueAdd();