diff --git a/src/component/product/ProductActive.jsx b/src/component/product/ProductActive.jsx
index 92c4e16..423869a 100644
--- a/src/component/product/ProductActive.jsx
+++ b/src/component/product/ProductActive.jsx
@@ -27,52 +27,19 @@ export default function ProductActive(){
alt="users-avatar" />
-
Edit Your Personal Settings
+ Edit Your Product Settings
:
-
-
-
+ {(product_status <= productConst.PRODUCT_AVAILABLE)?
+
+ :<>> }
+
+ {(product_status === productConst.PRODUCT_PROVISIONING)?
+
+ :<>> }
+
+ {(product_status === productConst.PRODUCT_ACTIVE)?
+
+ :<>> }
+
}
diff --git a/src/constants/products.js b/src/constants/products.js
index a90af7f..44ccbc9 100644
--- a/src/constants/products.js
+++ b/src/constants/products.js
@@ -1,5 +1,5 @@
export const productConst = {
- PRODUCT_AVAILABLE: 0,
- PRODUCT_PROVISIONING: 5,
+ PRODUCT_AVAILABLE: 5,
+ PRODUCT_PROVISIONING: 6,
PRODUCT_ACTIVE: 7,
};
\ No newline at end of file