Skip to content

Commit

Permalink
Fixed: bug in logout path with login with email
Browse files Browse the repository at this point in the history
  • Loading branch information
IMNicolasM committed Nov 14, 2023
1 parent fb75daa commit 49d6e40
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 49d6e40

Please sign in to comment.