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 502033c commit ab29552Copy full SHA for ab29552
client/utils/dispatcher.js
@@ -40,7 +40,10 @@ export function listen(callback) {
40
function eventListener(e) {
41
const { data } = e;
42
43
- if (data && e.origin === origin) {
+ // 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) {
47
notifyListener(data);
48
}
49
0 commit comments