From 51287c85dc4fe9a3b4ea5deae2ef3938cee1f99b Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Sat, 23 Aug 2025 17:41:28 +0200 Subject: [PATCH] Update offscreen.js (#1134) --- apps/browser-extension/public/offscreen.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/browser-extension/public/offscreen.js b/apps/browser-extension/public/offscreen.js index c6ceeb4a3..29e21ea45 100644 --- a/apps/browser-extension/public/offscreen.js +++ b/apps/browser-extension/public/offscreen.js @@ -27,10 +27,8 @@ const textEl = document.querySelector('#text'); async function clearClipboard() { try { // Use execCommand to clear clipboard - console.log(textEl); textEl.value = '\n'; textEl.select(); - console.log(textEl.value); document.execCommand('copy'); } catch (error) { console.error('[OFFSCREEN] Error clearing clipboard:', error);