Skip to content

Commit 52665cf

Browse files
committed
refactor(interaction): keep requireResolvedPoint local to the gesture runtime
1 parent 449bc59 commit 52665cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/commands/interaction/runtime/gestures.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ function recordedDragTarget(target: ResolvedInteractionTarget): DragRecordingTar
347347
};
348348
}
349349

350-
export function requireResolvedPoint(result: { point?: Point }): Point {
350+
function requireResolvedPoint(result: { point?: Point }): Point {
351351
if (!result.point) {
352352
throw new AppError('COMMAND_FAILED', 'Interaction target resolved without coordinates');
353353
}

0 commit comments

Comments
 (0)