mirror of
https://github.com/vercel/commerce.git
synced 2025-07-27 04:01:23 +00:00
Removed @framework imports within framework providers
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import {
|
||||
SHOPIFY_CHECKOUT_ID_COOKIE,
|
||||
SHOPIFY_CHECKOUT_URL_COOKIE,
|
||||
} from '@framework/const'
|
||||
} from '../../const'
|
||||
|
||||
import checkoutCreateMutation from '@framework/utils/mutations/checkout-create'
|
||||
import checkoutCreateMutation from '../../utils/mutations/checkout-create'
|
||||
import Cookies from 'js-cookie'
|
||||
|
||||
export const checkoutCreate = async (fetch: any) => {
|
||||
|
@@ -6,8 +6,8 @@ import {
|
||||
CheckoutLineItemsRemovePayload,
|
||||
CheckoutLineItemsUpdatePayload,
|
||||
Maybe,
|
||||
} from '@framework/schema'
|
||||
import { normalizeCart } from '@framework/utils'
|
||||
} from '../../schema'
|
||||
import { normalizeCart } from '../../utils'
|
||||
|
||||
export type CheckoutPayload =
|
||||
| CheckoutLineItemsAddPayload
|
||||
|
Reference in New Issue
Block a user