diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2024-01-31 09:19:45 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2024-01-31 09:19:45 +0700 |
| commit | 02897ae8c1866da91f0c256ffbb46fc0cb97e0c2 (patch) | |
| tree | ba9bee0d2405f5ee8b6f8c74587fbf4377e94566 /src/pages/shop | |
| parent | dbb71d75b5ea051a25040bab23715f80e1c046d2 (diff) | |
Fix import sequence
Diffstat (limited to 'src/pages/shop')
| -rw-r--r-- | src/pages/shop/category/[slug].jsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pages/shop/category/[slug].jsx b/src/pages/shop/category/[slug].jsx index 64f1e350..1afe30bf 100644 --- a/src/pages/shop/category/[slug].jsx +++ b/src/pages/shop/category/[slug].jsx @@ -1,8 +1,9 @@ +import _ from 'lodash'; import dynamic from 'next/dynamic'; -import { getIdFromSlug, getNameFromSlug } from '@/core/utils/slug'; import { useRouter } from 'next/router'; -import _ from 'lodash'; + import Seo from '@/core/components/Seo'; +import { getIdFromSlug, getNameFromSlug } from '@/core/utils/slug'; import Breadcrumb from '@/lib/category/components/Breadcrumb'; const BasicLayout = dynamic(() => |
