remove console statement

This commit is contained in:
Jade (Rose) Rowland 2023-12-30 22:44:40 -05:00
parent b3522fea6a
commit 34f0d631d9

View File

@ -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;