diff --git a/airbyte-webapp/src/views/Connector/ServiceForm/components/Sections/ArraySection.tsx b/airbyte-webapp/src/views/Connector/ServiceForm/components/Sections/ArraySection.tsx index a64add38b894..941b3963f9ef 100644 --- a/airbyte-webapp/src/views/Connector/ServiceForm/components/Sections/ArraySection.tsx +++ b/airbyte-webapp/src/views/Connector/ServiceForm/components/Sections/ArraySection.tsx @@ -45,7 +45,7 @@ export const ArraySection: React.FC<{ onStartEdit={(index) => addUnfinishedFlow(path, { id: index, - startValue: index < items.length ? items[index] : null, + startValue: index < items.length ? items : null, }) } onDone={() => removeUnfinishedFlow(path)}