Skip to content

Commit

Permalink
🐛 [AuthDialog] Fix not redirect after login
Browse files Browse the repository at this point in the history
  • Loading branch information
nwingt committed May 31, 2022
1 parent 1b9ac2f commit 1a8045d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/v2/dialogs/AuthDialogV2.vue
Original file line number Diff line number Diff line change
Expand Up @@ -652,8 +652,8 @@ export default {
} catch (err) {
// no op
}
if (this.isSinglePage) {
this.currentTab = 'loginSuccessful';
if (!this.isOverlay) {
this.currentTab = 'loading';
this.$nextTick(() => {
if (!tryPostLoginRedirect({ route: this.$route })) {
// Normal case
Expand Down

0 comments on commit 1a8045d

Please sign in to comment.