From 502c812d9ce66b5904f6ebb57c9bcc4199856eaa Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Wed, 23 Dec 2020 23:46:36 +0000 Subject: [PATCH] Chore: remove debug code --- packages/app-desktop/gui/utils/convertToScreenCoordinates.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/app-desktop/gui/utils/convertToScreenCoordinates.ts b/packages/app-desktop/gui/utils/convertToScreenCoordinates.ts index c4a3b5dfff..7a8e67010e 100644 --- a/packages/app-desktop/gui/utils/convertToScreenCoordinates.ts +++ b/packages/app-desktop/gui/utils/convertToScreenCoordinates.ts @@ -7,7 +7,6 @@ export default function convertToScreenCoordinates(o: any): any { if (typeof o === 'object' && o !== null) { o = JSON.parse(JSON.stringify(o)); - console.info('K', Object.keys(o)); for (const k of Object.keys(o)) { o[k] = convertToScreenCoordinates(o[k]); }