diff --git a/src/app/policyEngine/components/AddPolicyEngine.tsx b/src/app/policyEngine/components/AddPolicyEngine.tsx index 7d47a38..302e12f 100644 --- a/src/app/policyEngine/components/AddPolicyEngine.tsx +++ b/src/app/policyEngine/components/AddPolicyEngine.tsx @@ -15,6 +15,7 @@ import { CustomSwitch, CustomCheckBox, CustomLoader, + Skeleton, } from '../../../components/custom'; import CustomSuccessModal from '../../../components/custom/CustomSuccessModal'; import { @@ -544,7 +545,7 @@ export default function AddPolicyEngine() { jurisdictionId: Array.isArray(jurisdiction) && jurisdiction.length > 0 ? String(jurisdiction[0]) : undefined, jurisdictionIds: Array.isArray(jurisdiction) ? jurisdiction.map(String) : [], description: description || undefined, - status: isDeploy ? 'active' : 'draft', + status: isDeploy ? status.toLowerCase() : 'draft', audienceType: audienceType === 'Selected Cohorts' ? 'COHORT' : 'ALL', targetAudiences: audienceType === 'Selected Cohorts' @@ -759,8 +760,82 @@ export default function AddPolicyEngine() { if (loadingPolicy) { return ( -
- +
+ {/* ─── Header Skeleton ────────────────────────────────────────────── */} +
+
+
+ +
+
+ + +
+
+
+ + {/* ─── Body Content Skeleton ──────────────────────────────────────── */} +
+
+ + {/* Policy Information Card */} +
+
+ + +
+ +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+ + +
+
+ + {/* Target Audience Card */} +
+
+ + +
+
+
+ + +
+
+
+ + {/* Rule Engine Card */} +
+
+
+ + +
+ +
+
+ +
+
+ +
+
); }