File tree Expand file tree Collapse file tree 3 files changed +17
-11
lines changed
packages/shop/src/components/features Expand file tree Collapse file tree 3 files changed +17
-11
lines changed Original file line number Diff line number Diff line change @@ -140,15 +140,17 @@ export const CartStatus: React.FC<{ onPaymentCompleted?: () => void }> = Suspens
140140 onSubmit = { onFormSubmit }
141141 defaultValue = { data . customer_info }
142142 />
143- { data . products . map ( ( prodRel ) => (
144- < CartItem
145- language = { language }
146- key = { prodRel . id }
147- cartProdRel = { prodRel }
148- disabled = { disabled }
149- removeItemFromCartFunc = { removeItemFromCart }
150- />
151- ) ) }
143+ < Stack spacing = { 2 } >
144+ { data . products . map ( ( prodRel ) => (
145+ < CartItem
146+ language = { language }
147+ key = { prodRel . id }
148+ cartProdRel = { prodRel }
149+ disabled = { disabled }
150+ removeItemFromCartFunc = { removeItemFromCart }
151+ />
152+ ) ) }
153+ </ Stack >
152154 < br />
153155 < Divider />
154156 < Typography variant = "h6" sx = { { textAlign : "end" } } >
Original file line number Diff line number Diff line change @@ -189,7 +189,9 @@ export const OrderList: React.FC = () => {
189189 < CommonComponents . SignInGuard >
190190 < ErrorBoundary fallback = { < div > 주문 내역을 불러오는 중 문제가 발생했습니다.</ div > } >
191191 < Suspense fallback = { < CircularProgress /> } >
192- < WrappedOrderList />
192+ < Stack spacing = { 2 } >
193+ < WrappedOrderList />
194+ </ Stack >
193195 </ Suspense >
194196 </ ErrorBoundary >
195197 </ CommonComponents . SignInGuard >
Original file line number Diff line number Diff line change @@ -208,7 +208,9 @@ export const ProductList: React.FC<ShopSchemas.ProductListQueryParams> = (qs) =>
208208 return (
209209 < ErrorBoundary fallback = { < div > 상품 목록을 불러오는 중 문제가 발생했습니다.</ div > } >
210210 < Suspense fallback = { < CircularProgress /> } >
211- < WrappedProductList />
211+ < Stack spacing = { 2 } >
212+ < WrappedProductList />
213+ </ Stack >
212214 </ Suspense >
213215 </ ErrorBoundary >
214216 ) ;
You can’t perform that action at this time.
0 commit comments