import { useContext } from "react"; // mobx store import { StoreContext } from "@/lib/store-context"; // mobx store import { IEstimate } from "@/store/estimates/estimate"; export const useEstimate = (estimateId: string | undefined): IEstimate => { const context = useContext(StoreContext); if (context === undefined) throw new Error("useEstimate must be used within StoreProvider"); if (!estimateId) return {} as IEstimate; return context.projectEstimate.estimates?.[estimateId] ?? {}; };