Skip to content

Commit

Permalink
Merge pull request #19 from IMNicolasM/staging
Browse files Browse the repository at this point in the history
Fixed: bug in logout path with login with email
  • Loading branch information
imagina authored Nov 14, 2023
2 parents 631c353 + 49d6e40 commit 29e70dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _pages/wrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<force-change-password v-if="authType == 'forceChangePassword'" class="full-width"/>
</div>
<!--Login With Email-->
<email-auth v-if="modeAuthType === 'withEmail'" class="full-width"/>
<email-auth v-if="['login', 'register'].includes(authType) && modeAuthType === 'withEmail'" class="full-width"/>
</div>
<!--logout-->
<logout v-if="authType == 'logout'" class="full-width"/>
Expand Down

0 comments on commit 29e70dd

Please sign in to comment.