From e996291ebb96326500ad6fb029c283c9fa7951bf Mon Sep 17 00:00:00 2001 From: Rohit Date: Mon, 7 Jul 2025 15:38:57 +0530 Subject: [PATCH] fix: import for coordinates --- src/helpers/inputHelpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/inputHelpers.ts b/src/helpers/inputHelpers.ts index 19ccfb13..b9fa5f2a 100644 --- a/src/helpers/inputHelpers.ts +++ b/src/helpers/inputHelpers.ts @@ -2,7 +2,7 @@ import { ONE_PERCENT_OF_VIEWPORT_H, ONE_PERCENT_OF_VIEWPORT_W, } from "../constants/const"; -import { Coordinates } from '../components/recorder/canvas'; +import { Coordinates } from '../components/recorder/Canvas'; export const throttle = (callback: any, limit: number) => { let wait = false;