瀏覽代碼

fix bug on empty cart

master
azri 5 天之前
父節點
當前提交
adc4682715
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      src/components/SideCart/SideCart.jsx

+ 1
- 1
src/components/SideCart/SideCart.jsx 查看文件

@@ -168,7 +168,7 @@ const SideCart = ({ open, onClose }) => {
168 168
           )}
169 169
         </Box>
170 170
 
171
-        <Box sx={{ mt: "auto" }}>
171
+        <Box sx={{ mt: "auto", display:(cartProducts.length > 0) ? "block" : "none" }}>
172 172
           {/* INVOICES */}
173 173
           <Grid container spacing={2}>
174 174
 

Loading…
取消
儲存