Skip to content

Commit

Permalink
Fixed incorrect react key
Browse files Browse the repository at this point in the history
  • Loading branch information
Donkie committed Jun 19, 2024
1 parent 58e76b0 commit 515aafa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions client/src/components/printing/printingDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,8 @@ const PrintingDialog: React.FC<PrintingDialogProps> = ({
<tr key={rowIdx}>
{row.map(function (item, colIdx) {
return (
<td>
<td key={colIdx}>
<div
key={colIdx}
style={{
width: `${itemWidth}mm`,
height: `${itemHeight}mm`,
Expand Down

0 comments on commit 515aafa

Please sign in to comment.