From abef73ab9f1a8dfbc2fcf0a1719d31866b75088e Mon Sep 17 00:00:00 2001
From: Azalea <22280294+hykilpikonna@users.noreply.github.com>
Date: Mon, 16 Dec 2024 14:06:08 -0500
Subject: [PATCH] [F] Fix extra column
---
src/App.svelte | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/App.svelte b/src/App.svelte
index ae6261b..54bc6fc 100644
--- a/src/App.svelte
+++ b/src/App.svelte
@@ -185,12 +185,12 @@
{/each}
{/each}
{#each range(eRows) as y}
- {#each range(eCols) as x}
+ {#each range(cols) as x}
{/each}
{/each}
{#each range(rows) as y}
- {#each range(cols + 1) as x}
+ {#each range(eCols) as x}
{/each}
{/each}