Skip to content

Commit

Permalink
Remove unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Matejk00 committed Oct 17, 2024
1 parent 76d53d0 commit 74a978c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ export class CheckoutLoginComponent implements OnDestroy {
if (!this.sub) {
this.sub = this.activeCartFacade.isGuestCart().subscribe((isGuest) => {
if (isGuest) {
this.authRedirectService.setRedirectUrl('/cart');
this.authRedirectService.redirect();
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ export const defaultCheckoutConfig: CheckoutConfig = {
],
express: false,
defaultDeliveryMode: [DeliveryModePreferences.FREE],
guest: true,
guest: false,
},
};
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const defaultOpfCheckoutConfig: CheckoutConfig = {
flows: {
OPF: {
steps: opfCheckoutSteps,
guest: true,
guest: false,
},
'OPF-guest': {
steps: opfCheckoutSteps,
Expand Down

0 comments on commit 74a978c

Please sign in to comment.