From 0739a09f6e233c8ff35953f25cc55b5be6cb690a Mon Sep 17 00:00:00 2001 From: Vikhyath Mondreti Date: Fri, 14 Nov 2025 18:06:50 -0800 Subject: [PATCH] test(pr): github trigger --- .../[workspaceId]/w/hooks/use-duplicate-folder.ts | 10 ---------- 1 file changed, 10 deletions(-) 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 }