diff --git a/artifacts/chrome.zip b/artifacts/chrome.zip index af238be0..a876e922 100644 Binary files a/artifacts/chrome.zip and b/artifacts/chrome.zip differ diff --git a/src/pages/content/sidebar.tsx b/src/pages/content/sidebar.tsx index ce4b4291..983b8086 100644 --- a/src/pages/content/sidebar.tsx +++ b/src/pages/content/sidebar.tsx @@ -24,7 +24,7 @@ document.body.appendChild(iframe) * To open the sidebar, the background script sends a message with the action 'open-sidebar'. * The sidebar is opened by setting the width of the iframe to 400px. */ -chrome.runtime.onMessage.addListener(function (msg) { +chrome.runtime.onMessage.addListener((msg) => { if (msg.action === 'open-sidebar') { if (iframe.style.width === '0px') { iframe.style.width = '400px'