fix(fulfillment): Fulfillment set file name typo (#6671)

This commit is contained in:
Oli Juhl
2024-03-12 10:08:39 +01:00
committed by GitHub
parent a8794d48de
commit e82b4788ec
3 changed files with 6 additions and 6 deletions

View File

@@ -1,12 +1,12 @@
export { default as FulfillmentSet } from "./fullfilment-set"
export { default as Fulfillment } from "./fulfillment"
export { default as Address } from "./address"
export { default as GeoZone } from "./geo-zone"
export { default as ServiceZone } from "./service-zone"
export { default as Fulfillment } from "./fulfillment"
export { default as FulfillmentItem } from "./fulfillment-item"
export { default as FulfillmentLabel } from "./fulfillment-label"
export { default as FulfillmentProvider } from "./fulfillment-provider"
export { default as FulfillmentSet } from "./fulfillment-set"
export { default as GeoZone } from "./geo-zone"
export { default as ServiceZone } from "./service-zone"
export { default as ShippingOption } from "./shipping-option"
export { default as ShippingOptionType } from "./shipping-option-type"
export { default as ShippingOptionRule } from "./shipping-option-rule"
export { default as ShippingOptionType } from "./shipping-option-type"
export { default as ShippingProfile } from "./shipping-profile"

View File

@@ -19,7 +19,7 @@ import {
PrimaryKey,
Property,
} from "@mikro-orm/core"
import FulfillmentSet from "./fullfilment-set"
import FulfillmentSet from "./fulfillment-set"
import GeoZone from "./geo-zone"
import ShippingOption from "./shipping-option"