🔇 Removing some frontend console noise

This commit is contained in:
Eric Doughty-Papassideris
2024-06-04 19:48:47 +02:00
committed by ericlinagora
parent 90d4719e22
commit be574fc39f
3 changed files with 5 additions and 9 deletions
@@ -206,7 +206,7 @@ export default memo(
},
})
}
}
function draggableMarkup(index: number, child: any) {
@@ -226,13 +226,13 @@ export default memo(
isMobile ? (
<DocumentRow {...commonProps} />
) : (
<Draggable id={index}>
<Draggable id={index} key={index}>
<DocumentRow {...commonProps} />
</Draggable>
)
);
}
return (
<>