mirror of
https://github.com/makeplane/plane.git
synced 2025-12-22 06:39:31 +01:00
13 lines
393 B
TypeScript
13 lines
393 B
TypeScript
import { TDeDupeIssue } from "@plane/types";
|
|
|
|
export const useDebouncedDuplicateIssues = (
|
|
workspaceSlug: string | undefined,
|
|
workspaceId: string | undefined,
|
|
projectId: string | undefined,
|
|
formData: { name: string | undefined; description_html?: string | undefined; issueId?: string | undefined }
|
|
) => {
|
|
const duplicateIssues: TDeDupeIssue[] = [];
|
|
|
|
return { duplicateIssues };
|
|
};
|