File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11import { notFound } from 'next/navigation' ;
22import { getProductById } from '@/components/product/product-service' ;
33import { fetchUserBodyInfo , fetchSizeAnalysis } from '@/mocks/size' ;
4- import { ProductDetailView } from '@/components/product/product-detail-view' ;
4+ import ProductDetailView from '@/components/product/product-detail-view' ;
55
66interface PageProps {
77 params : Promise < { id : string } > ;
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export { ProductFilterBar } from './product-filter-bar';
1111export { ProductImageSlider } from './product-image-slider' ;
1212export { default as ProductInfo } from './product-info' ;
1313export { default as ProductTab } from './product-tab' ;
14- export { ProductDetailView } from './product-detail-view' ;
14+ export { default as ProductDetailView } from './product-detail-view' ;
1515
1616// ----------------------------------------------------------------------
1717// 3. 상품 상세 - 설명 및 레이아웃
@@ -24,7 +24,7 @@ export { ProductDescription } from './descriptions/product-description';
2424// ----------------------------------------------------------------------
2525export { default as CompactProductHeader } from './compact-product-header' ;
2626export { default as ProductHeader } from './product-header' ;
27- export { ProductBottomBar } from './product-bottom-bar' ;
27+ export { default as ProductBottomBar } from './product-bottom-bar' ;
2828export { ProductNotice } from './descriptions/product-notice' ;
2929export { RecommendedProductsCarousel } from './descriptions/recommended-products-carousel' ;
3030
You can’t perform that action at this time.
0 commit comments