print added

This commit is contained in:
Samandar Turg'unboev
2025-06-25 17:21:24 +05:00
parent c04c8a74b2
commit 50da2a139a
2 changed files with 4 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ const BoxesPrintList = forwardRef<HTMLDivElement, BoxesPrintListProps>(({ boxDat
<div ref={ref}>
{productsChunks.map((chunk, index) => (
<div key={index} style={{ pageBreakAfter: 'always' }}>
<BoxesPrint boxData={{ ...boxData, products_list: chunk }} />
<BoxesPrint boxData={{ ...boxData, products_list: chunk }} key={index} />
</div>
))}
</div>