Skip to content

Commit 80ec126

Browse files
authored
fix: remove redirectUri since it's no longer needed (#5171)
Problem: - redirectUri used to be used to redirect back to vscode but we are no longer using that Solution: - remove it
1 parent 6b56f0b commit 80ec126

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

packages/core/src/auth/sso/vue/index.html

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,6 @@ <h4>Request denied</h4>
7878
'footerText'
7979
).innerText = `You can close this window and start using ${productName}`
8080

81-
const redirectUri = params.get('redirectUri')
82-
if (redirectUri) {
83-
window.location.replace(redirectUri)
84-
}
85-
8681
function showErrorMessage(errorText) {
8782
document.getElementById('approved-auth').classList.add('hidden')
8883
document.getElementById('denied-auth').classList.remove('hidden')

0 commit comments

Comments
 (0)