chore: code refactoring (#5928)
* chore: de dupe code splitting * chore: code refactor
This commit is contained in:
parent
4bc751b7ab
commit
57eb08c8a2
21 changed files with 664 additions and 250 deletions
11
web/ce/hooks/use-debounced-duplicate-issues.tsx
Normal file
11
web/ce/hooks/use-debounced-duplicate-issues.tsx
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
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 };
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue