From e11a8471101ac04968ffcd0257b5d8de9c8c72cf Mon Sep 17 00:00:00 2001 From: Terncode Date: Sat, 15 Feb 2025 13:21:53 +0100 Subject: [PATCH] Remove reminder comment --- src/UI/components/overlay.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/UI/components/overlay.tsx b/src/UI/components/overlay.tsx index 4c26fc3..91480dc 100644 --- a/src/UI/components/overlay.tsx +++ b/src/UI/components/overlay.tsx @@ -125,9 +125,6 @@ export class Overlay extends React.Component { const canvas = this.ref.current!; const scale = Math.pow(2, this.props.cords.uScale); - // TODO calculate cords differently to be less expensive - // TODO also add cache - // TODO also profile the thing const cords = this.props.cords.gridToScreen(this.x, this.y)!; if (!cords) { const ctx = canvas.getContext("2d")!;