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 0360c59 commit 545d8fdCopy full SHA for 545d8fd
src/services/PopUpRedirect.tsx
@@ -6,7 +6,7 @@ const PopUpRedirect: React.FC = () => {
6
const params = window.location.search;
7
if (window.opener) {
8
// send them to the opening window
9
- window.opener.postMessage('',params);
+ window.opener.postMessage(params, window.location.origin);
10
// close the popup
11
window.close();
12
}
0 commit comments