We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a0780f commit 86e2dbdCopy full SHA for 86e2dbd
src/app/components/App.jsx
@@ -56,7 +56,6 @@ class App extends Component {
56
this.port = portFromExtension;
57
58
portFromExtension.onMessage.addListener((msg) => {
59
- console.log('new msg : ', msg);
60
const newData = {
61
action: msg.action,
62
state: msg.state,
src/browser/chrome/extension.js
@@ -3,7 +3,6 @@ const port = chrome.runtime.connect({
3
});
4
5
port.onMessage.addListener((msg) => {
6
- console.log('Extension got something: ', msg);
7
window.postMessage(msg);
8
9
0 commit comments