Skip to content

Commit

Permalink
#68 - show shipping address form for loggedIn users
Browse files Browse the repository at this point in the history
  • Loading branch information
szafran89 committed Dec 21, 2018
1 parent f6d55fd commit ea2592f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions view/frontend/web/js/components/steps/TheShippingStep.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
@ready="isReady => customerEmailReadyToSubmit = isReady"
/>
<ShippingAddressForm
v-if="!isCustomerLoggedIn"
ref="shippingsAddressForm"
@ready="isReady => shippingAddressReadyToSubmit = isReady"
/>
Expand Down Expand Up @@ -68,7 +67,7 @@ export default {
if (
!this.shippingAddressReadyToSubmit ||
(!this.isCustomerLoggedIn && !this.shippingMethodsReadyToSubmit) ||
!this.shippingMethodsReadyToSubmit ||
(!this.isCustomerLoggedIn && !this.customerEmailReadyToSubmit)
) {
return
Expand Down

0 comments on commit ea2592f

Please sign in to comment.