diff --git a/src/views/ShoppingCart/index.js b/src/views/ShoppingCart/index.js
index 3bb6888..92d01c0 100644
--- a/src/views/ShoppingCart/index.js
+++ b/src/views/ShoppingCart/index.js
@@ -274,111 +274,116 @@ function ShoppingCart({
}`}
>
{layouts[phase]}
- {phase !== "address" && (
-
-
-
-
- جمع کل سبد خرید
-
-
- {separate(productsLength ? factorInfo?.payPrice : "")}
-
- تومان
-
-
-
- {phase === "products" && (
+ {console.log(list)}
+ {list?.length
+ ? phase !== "address" && (
-
-
- هزینه ارسال کالا پس از تعیین محل آدرس مشخص میشود
-
-
- )}
- {null && phase === "deliveryForm" && (
-
-
- انتخاب شیوه پرداخت
-
-
- )}
-
-
-
object.productType === 2)
- .length > 0
- ? "ادامه فرایند خرید"
- : "پرداخت"
- }
- backgroundColor="bg-blueC0"
- border={{ color: "#196EC055", width: "0px" }}
- width="100%"
- color="text-white"
- onClick={next[phase]}
- // loading={loading}
- />
- {phase === "deliveryForm" && (
- setPhase("products")}
- >
- بازگشت
-
-
- )}
-
- )}
+ )
+ : null}
);
}