Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mkucmus committed May 22, 2023
1 parent 04d75f0 commit 74cab62
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,5 @@
},
"engines": {
"node": ">=14.17.0"
},
"dependencies": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { BillingAddress } from "./BillingAddress";
import { CustomerAddress } from "./CustomerAddress";
import { Promotion } from "../promotion/Promotion";
import { Tag } from "../../system/tag/Tag";
import { CustomField } from "../../common/CustomField";

/**
* @beta
Expand Down Expand Up @@ -46,7 +47,7 @@ export interface Customer {
autoIncrement: number;
tags: Tag[] | null;
promotions: Promotion[] | null;
customFields: unknown;
customFields: CustomField[];
productReviews: ProductReview[];
doubleOptInConfirmDate: null | string;
doubleOptInEmailSentDate: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,8 @@ import ShippingSection from "@/components/checkout/ShippingSection.vue"
import PaymentSection from "@/components/checkout/PaymentSection.vue"
import SwAddressManager from "@/components/forms/SwAddressManager.vue"
import {
useCart,
useCustomerAddresses,
useSessionContext,
useUser,
} from "@shopware-pwa/composables"
export default {
Expand Down Expand Up @@ -84,8 +82,6 @@ export default {
addedActiveBillingAddress,
}
},
}
</script>
<style lang="scss" scoped>
Expand Down

0 comments on commit 74cab62

Please sign in to comment.