fix(#1920): Ignore redirect abortion emmited by loadUrl
Description
This changes fix an issue which happens during authorization process of OAuth2.0 with authorization code when loading the authorize user window of IdP which contain redirects. This redirects cause the window.loadUrl(url) function to throw an error due that the original requested page was not completely loaded.
https://github.com/usebruno/bruno/blob/1349a7975082e2afa64f4cc3b1c2d0d884991b4b/packages/bruno-electron/src/ipc/network/authorize-user-in-window.js#L75-L80
Such behaviour is explained on https://github.com/electron/electron/issues/17526 and https://github.com/electron/electron/issues/27574. Insomnia also faced this as they reported on this issue https://github.com/Kong/insomnia/issues/5926
Current error:
Fixes: #1920
Contribution Checklist:
- [X] The pull request only addresses one issue or adds one feature.
- [X] The pull request does not introduce any breaking changes
- [X] I have added screenshots or gifs to help explain the change if applicable.
- [X] I have read the contribution guidelines.
- [X] Create an issue and link to the pull request.