diff --git a/src/components/modules/escrow/ui/dialogs/utils/SkeletonMilestones.tsx b/src/components/modules/escrow/ui/dialogs/utils/SkeletonMilestones.tsx index 27644d3..4e664c4 100644 --- a/src/components/modules/escrow/ui/dialogs/utils/SkeletonMilestones.tsx +++ b/src/components/modules/escrow/ui/dialogs/utils/SkeletonMilestones.tsx @@ -1,13 +1,17 @@ import { Skeleton } from "@/components/ui/skeleton"; +import { useGlobalBoundedStore } from "@/core/store/data"; const SkeletonMilestones = () => { + const selectedEscrow = useGlobalBoundedStore((state) => state.selectedEscrow); + const milestones = selectedEscrow?.milestones || []; + return (