From df4d2d6b72db641d90955b68ef14009e44b35dec Mon Sep 17 00:00:00 2001 From: Su-Yong Date: Sun, 31 Dec 2023 02:28:31 +0900 Subject: [PATCH] chore(ambient-mode): remove `console.log` --- src/plugins/ambient-mode/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/plugins/ambient-mode/index.ts b/src/plugins/ambient-mode/index.ts index cf716401..7d40809e 100644 --- a/src/plugins/ambient-mode/index.ts +++ b/src/plugins/ambient-mode/index.ts @@ -239,7 +239,6 @@ export default createPlugin({ cancelAnimationFrame(lastEffectWorkId); lastEffectWorkId = requestAnimationFrame(() => { - // console.log('context', context); if (!context) return; const width = this.qualityRatio; @@ -350,7 +349,6 @@ export default createPlugin({ const isVideoMode = () => { const songVideo = document.querySelector('#song-video'); if (!songVideo) return false; - console.log(getComputedStyle(songVideo).display); return getComputedStyle(songVideo).display !== 'none'; };