Skip to content

Commit

Permalink
Merge pull request #37 from Authress/fix-window-open-call
Browse files Browse the repository at this point in the history
Fix window.open function call.
  • Loading branch information
wparad authored Feb 7, 2024
2 parents 9535411 + 299ff88 commit c58c35e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/windowManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class WindowManager {
if (typeof window === 'undefined') {
return null;
}
return window.location.open(newLocationUrl.toString());
return window.open(newLocationUrl.toString());
}
}

Expand Down

0 comments on commit c58c35e

Please sign in to comment.