diff --git a/src/helpers/rows.ts b/src/helpers/rows.ts index 21211b5..5943b4c 100644 --- a/src/helpers/rows.ts +++ b/src/helpers/rows.ts @@ -40,7 +40,7 @@ const handleMixedStructure = (data: ExcelEntDataStructure) => { const transposed = transposeMatrixWithPadding(columnsContent); rows.push(...transposed); - currentIndex = nextRowIndex === -1 ? currentIndex : nextRowIndex - 1; + currentIndex = nextRowIndex === -1 ? currentIndex : nextRowIndex; } }