Skip to content

Commit

Permalink
Merge pull request #45 from ProtocolONE/bugfix/ptah-integration-11
Browse files Browse the repository at this point in the history
Adds fixes
  • Loading branch information
pashakbit authored May 26, 2021
2 parents c371e6d + ad0ce0f commit c3950d9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/PaySuperAuthForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default {
remember: true,
});
if (url) {
this.$router.push(url);
window.location.replace(url);
}
this.$emit('loadingEnd');
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/PaySuperAutoLoginForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default {
this.$emit('loadingStart');
const url = await this.autoLogin({ previousLogin: this.previousLogin });
if (url) {
this.$router.push(url);
window.location.replace(url);
}
this.$emit('loadingEnd');
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/PaySuperRegisterForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default {
remember: true,
});
if (url) {
this.$router.push(url);
window.location.replace(url);
}
this.$emit('loadingEnd');
},
Expand Down

0 comments on commit c3950d9

Please sign in to comment.