rm junk logs

This commit is contained in:
nick-delirium 2024-08-30 10:09:54 +02:00
parent 2c9d801501
commit f0d3b361a0
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0
2 changed files with 0 additions and 3 deletions

View file

@ -512,7 +512,6 @@ export default defineBackground(() => {
} }
if (request.type === messages.injected.from.bumpLogs) { if (request.type === messages.injected.from.bumpLogs) {
finalSpotObj.logs.push(...request.logs); finalSpotObj.logs.push(...request.logs);
console.log("log bump", finalSpotObj.logs);
return "pong"; return "pong";
} }
if (request.type === messages.content.from.bumpClicks) { if (request.type === messages.content.from.bumpClicks) {
@ -1235,7 +1234,6 @@ export default defineBackground(() => {
target: "offscreen", target: "offscreen",
}) })
.then((r) => { .then((r) => {
console.log(r);
const msg = { const msg = {
...mountMsg, ...mountMsg,
...r, ...r,

View file

@ -243,7 +243,6 @@ function AudioPicker(props: IAudioPicker) {
createEffect(() => { createEffect(() => {
chrome.storage.local.get("audioPerm", (data) => { chrome.storage.local.get("audioPerm", (data) => {
console.log("audioPerm", data.audioPerm);
if (data.audioPerm && audioDevices().length === 0) { if (data.audioPerm && audioDevices().length === 0) {
props.setHasPermissions(true); props.setHasPermissions(true);
void checkAudioDevices(); void checkAudioDevices();