From d56492c5801917444dd79f465017ae63bd9c9e62 Mon Sep 17 00:00:00 2001 From: spaenleh Date: Wed, 29 May 2024 12:08:04 +0200 Subject: [PATCH] fix: increase copy limit to 400 --- src/constants/limits.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants/limits.ts b/src/constants/limits.ts index 580629e9..8d377128 100644 --- a/src/constants/limits.ts +++ b/src/constants/limits.ts @@ -23,7 +23,7 @@ export const MAX_DESCENDANTS_FOR_MOVE = 130 as const; /** * Maximum number of descendants (in the item's subtree) for a `copy` */ -export const MAX_DESCENDANTS_FOR_COPY = 130 as const; +export const MAX_DESCENDANTS_FOR_COPY = 400 as const; /** * Maximum number of item memberships when deleting all "under" an item