0
0
mirror of https://github.com/makeplane/plane synced 2024-06-14 14:31:34 +00:00
plane/web/core/hooks/store/use-issue-detail.ts
2024-06-11 14:39:52 +05:30

12 lines
410 B
TypeScript

import { useContext } from "react";
// mobx store
import { StoreContext } from "@/lib/store-context";
// types
import { IIssueDetail } from "@/store/issue/issue-details/root.store";
export const useIssueDetail = (): IIssueDetail => {
const context = useContext(StoreContext);
if (context === undefined) throw new Error("useInbox must be used within StoreProvider");
return context.issue.issueDetail;
};