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 b3ffe86 commit 0b9581dCopy full SHA for 0b9581d
client/utils/dispatcher.js
@@ -40,10 +40,7 @@ export function listen(callback) {
40
function eventListener(e) {
41
const { data } = e;
42
43
- // Removing the origin check for now
44
- // I wonder if this is what is breaking production
45
- // if (data && e.origin === origin) {
46
- if (data) {
+ if (data && e.origin === origin) {
47
notifyListener(data);
48
}
49
0 commit comments