diff --git a/apps/sim/app/workspace/[workspaceId]/w/hooks/use-duplicate-folder.ts b/apps/sim/app/workspace/[workspaceId]/w/hooks/use-duplicate-folder.ts index 4bb11ddf938..35d7f1bca45 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/hooks/use-duplicate-folder.ts +++ b/apps/sim/app/workspace/[workspaceId]/w/hooks/use-duplicate-folder.ts @@ -6,18 +6,8 @@ import { useFolderStore } from '@/stores/folders/store' const logger = createLogger('useDuplicateFolder') interface UseDuplicateFolderProps { - /** - * Current workspace ID - */ workspaceId: string - /** - * Function that returns the folder ID(s) to duplicate - * This function is called when duplication occurs to get fresh selection state - */ getFolderIds: () => string | string[] - /** - * Optional callback after successful duplication - */ onSuccess?: () => void }