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