feat: store return URL before OAuth redirect

Changed files
+1
src
services
+1
src/services/auth.js
··· 56 56 } 57 57 58 58 async login(handle) { 59 + sessionStorage.setItem('oauth_return_url', window.location.pathname); 59 60 await this.#client.loginWithRedirect({ handle }); 60 61 } 61 62