fix(studio): remove unused onSelectElementById after indicator removal (#1377)

This commit is contained in:
Miguel Ángel
2026-06-12 11:34:16 -04:00
committed by GitHub
parent 3ba01129e7
commit 9e5b3d644f
2 changed files with 0 additions and 12 deletions
@@ -54,7 +54,6 @@ interface DomEditOverlayProps {
) => void;
onBlockedMove: (selection: DomEditSelection) => void;
onManualDragStart?: () => void;
onSelectElementById?: (id: string) => Promise<DomEditSelection | null>;
onPathOffsetCommit: (
selection: DomEditSelection,
next: { x: number; y: number },
@@ -84,7 +83,6 @@ export const DomEditOverlay = memo(function DomEditOverlay({
gridVisible = false,
gridSpacing = 50,
onManualDragStart,
onSelectElementById,
onPathOffsetCommit,
onGroupPathOffsetCommit,
onBoxSizeCommit,
@@ -214,7 +212,6 @@ export const DomEditOverlay = memo(function DomEditOverlay({
return () => cancelAnimationFrame(frame);
});
const gestures = createDomEditOverlayGestureHandlers({
overlayRef,
iframeRef,