diff --git a/client/utils/dispatcher.js b/client/utils/dispatcher.js index 6745840999..a05631b054 100644 --- a/client/utils/dispatcher.js +++ b/client/utils/dispatcher.js @@ -40,7 +40,10 @@ export function listen(callback) { function eventListener(e) { const { data } = e; - if (data && e.origin === origin) { + // Removing the origin check for now + // I wonder if this is what is breaking production + // if (data && e.origin === origin) { + if (data) { notifyListener(data); } }