Merge remote-tracking branch 'origin/main-dev' into main-demo

This commit is contained in:
2025-08-01 12:06:13 +05:30
3 changed files with 4 additions and 3 deletions

View File

@@ -631,7 +631,8 @@ function Point({ point }: { readonly point: Point }) {
uuid={point.pointUuid}
name={`${point.pointType}-Point`}
position={[...point.position]}
onClick={() => {
onClick={(e) => {
e.stopPropagation();
handlePointClick(point);
}}
onPointerOver={(e) => {

View File

@@ -338,7 +338,7 @@ function useRedoHandler() {
// SOCKET
const data = {
aisleData: updatedData,
...updatedData,
projectId,
versionId: selectedVersion?.versionId || '',
userId,

View File

@@ -339,7 +339,7 @@ function useUndoHandler() {
// SOCKET
const data = {
aisleData: updatedData,
...updatedData,
projectId,
versionId: selectedVersion?.versionId || '',
userId,