diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2024-01-05 09:30:08 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2024-01-05 09:30:08 +0700 |
| commit | ee0b5893ac039ab05fe8247647364a923d707da3 (patch) | |
| tree | 3f89409e3a1701cd129b1b031084bc236edbf0f4 /src | |
| parent | 6b8f9cda775b6c4701bcbcf30b0fbe1434107d06 (diff) | |
Fixing UI cart page
Diffstat (limited to 'src')
| -rw-r--r-- | src/pages/shop/cart.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/shop/cart.jsx b/src/pages/shop/cart.jsx index 34cae86a..7475b23d 100644 --- a/src/pages/shop/cart.jsx +++ b/src/pages/shop/cart.jsx @@ -8,7 +8,7 @@ import dynamic from 'next/dynamic'; import Link from 'next/link'; const AppLayout = dynamic(() => import('@/core/components/layouts/AppLayout')); -const CartDetail = dynamic(() => import('~/modules/cart/components/Detail')); +const CartDetail = dynamic(() => import('~/pages/shop/cart')); export default function Cart() { return ( |
