Skip to content

Commit

Permalink
Remove palette console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
n1ckoates committed Aug 25, 2024
1 parent b27727a commit 28dd413
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion plugins/CoverTheme/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ const getCachedPalette = (coverId: string) => {
const palette = paletteCache[coverId];
if (palette !== undefined) return palette;
return (paletteCache[coverId] = getPalette(getCoverUrl(coverId)).then((palette) => {
console.log(palette);
const colors: ColorInfo[] = [];
for (const colorName in palette) {
// @ts-expect-error Native return types dont serialize class methods like .rgb(),
Expand Down

0 comments on commit 28dd413

Please sign in to comment.