* fix: hooks and store splitting for issue-details * fix: refactoring * fix: refactoring * fix: refactor * fix: css
10 lines
322 B
TypeScript
10 lines
322 B
TypeScript
import { TIssueServiceType } from "@plane/types";
|
|
|
|
export const useWorkItemProperties = (
|
|
projectId: string | null | undefined,
|
|
workspaceSlug: string | null | undefined,
|
|
workItemId: string | null | undefined,
|
|
issueServiceType: TIssueServiceType
|
|
) => {
|
|
if (!projectId || !workspaceSlug || !workItemId) return;
|
|
};
|