From 34f0d631d9bc357a4a12ac8bc5eded1c4a70171c Mon Sep 17 00:00:00 2001 From: "Jade (Rose) Rowland" Date: Sat, 30 Dec 2023 22:44:40 -0500 Subject: [PATCH] remove console statement --- website/src/repl/panel/AudioDeviceSelector.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/website/src/repl/panel/AudioDeviceSelector.jsx b/website/src/repl/panel/AudioDeviceSelector.jsx index 05d44247..c2302444 100644 --- a/website/src/repl/panel/AudioDeviceSelector.jsx +++ b/website/src/repl/panel/AudioDeviceSelector.jsx @@ -21,7 +21,6 @@ export const getAudioDevices = async () => { export const setAudioDevice = async (id) => { const audioCtx = getAudioContext(); if (audioCtx.sinkId === id) { - console.log(audioCtx.sinkId, id); return; } const isValidID = (id ?? '').length > 0;