From ebde2663d1abeb59de7d2fd3955672dd3a9774ca Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Wed, 23 Oct 2024 12:28:16 -0400 Subject: [PATCH] Remove BetterAudioPlayer Logging --- src/equicordplugins/betterAudioPlayer/index.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/equicordplugins/betterAudioPlayer/index.tsx b/src/equicordplugins/betterAudioPlayer/index.tsx index c052133e..28ab6304 100644 --- a/src/equicordplugins/betterAudioPlayer/index.tsx +++ b/src/equicordplugins/betterAudioPlayer/index.tsx @@ -90,7 +90,6 @@ async function addListeners(audioElement: HTMLAudioElement, url: string, parentB canvas.classList.add("better-audio-visualizer"); audioElement.parentElement?.appendChild(canvas); - console.log(parentBorderRadius); if (parentBorderRadius) canvas.style.borderRadius = parentBorderRadius; function drawVisualizer() { @@ -204,9 +203,6 @@ function scanForAudioElements(element: HTMLElement) { if (!metadata) return; - console.log(audioElement); - console.log(metadata); - addListeners(metadata.audio, metadata.url, metadata.parentBorderRadius); }); }