diff --git a/packages/react-shared-components/src/hooks/useArrayList.tsx b/packages/react-shared-components/src/hooks/useArrayList.tsx index addeead2b38..f7f8b525b9e 100644 --- a/packages/react-shared-components/src/hooks/useArrayList.tsx +++ b/packages/react-shared-components/src/hooks/useArrayList.tsx @@ -44,7 +44,7 @@ export const useArrayList = (index: number = 0) => { ? newValue.length > minItems && !isDisable : !isDisable const allowAddition = isNum(maxItems) - ? newValue.length <= maxItems && !isDisable + ? newValue.length < maxItems && !isDisable : !isDisable const context = {