From 8e8ee970f3134c4754a5480b7f30a33ff5cd561c Mon Sep 17 00:00:00 2001 From: Gaston Sanchez Date: Thu, 1 Mar 2018 11:38:36 -0600 Subject: [PATCH] okta-vue - replace path when redirecting (#111) --- packages/okta-vue/src/components/ImplicitCallback.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/okta-vue/src/components/ImplicitCallback.vue b/packages/okta-vue/src/components/ImplicitCallback.vue index ade238abf..a77212474 100644 --- a/packages/okta-vue/src/components/ImplicitCallback.vue +++ b/packages/okta-vue/src/components/ImplicitCallback.vue @@ -3,7 +3,7 @@ export default { name: 'ImplicitCallback', async beforeMount () { await this.$auth.handleAuthentication() - this.$router.push({ + this.$router.replace({ path: this.$auth.getFromUri() }) },