feat(MED-48): retry

This commit is contained in:
2025-07-24 10:37:34 +03:00
parent 790103a55f
commit 6374bfb602
4 changed files with 14 additions and 7 deletions

View File

@@ -2,9 +2,9 @@ import { Metadata } from 'next';
import { StoreCartShippingOption } from '@medusajs/types';
import { listCartOptions, retrieveCart } from '~/medusa/lib/data/cart';
import { retrieveCustomer } from '~/medusa/lib/data/customer';
import { getBaseURL } from '~/medusa/lib/util/env';
import { listCartOptions, retrieveCart } from '@lib/data/cart';
import { retrieveCustomer } from '@lib/data/customer';
import { getBaseURL } from '@lib/util/env';
import CartMismatchBanner from '~/medusa/modules/layout/components/cart-mismatch-banner';
import Footer from '~/medusa/modules/layout/templates/footer';
import Nav from '~/medusa/modules/layout/templates/nav';