From 7bcfbc9af6a3d8c8ef33ffac048e2b41be426678 Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Thu, 13 Feb 2025 23:56:58 -0600 Subject: [PATCH] Whoops :') --- src/utils/target.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/utils/target.ts b/src/utils/target.ts index 7097122..fa87177 100644 --- a/src/utils/target.ts +++ b/src/utils/target.ts @@ -7,7 +7,6 @@ export const generateTargets = () => { // Calculate width segments to distribute targets evenly const segmentWidth = (CONSTANTS.VIRTUAL_CANVAS_SIZE - PADDING * 2) / Math.sqrt(CONSTANTS.TARGET_COUNT); const numColumns = Math.ceil(Math.sqrt(CONSTANTS.TARGET_COUNT)); - const numRows = Math.ceil(CONSTANTS.TARGET_COUNT / numColumns); for (let i = 0; i < CONSTANTS.TARGET_COUNT; i++) { let validPosition = false;