From 2d9769edb8d05e8c1bcdfcba1335f50ff061d964 Mon Sep 17 00:00:00 2001 From: Theo Leuthardt <60556192+theoleuthardt@users.noreply.github.com> Date: Fri, 21 Feb 2025 11:59:28 +0100 Subject: [PATCH] console log isn't needed anymore --- frontend/src/app/word-counter/page.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/app/word-counter/page.tsx b/frontend/src/app/word-counter/page.tsx index 94a9455..0434be1 100644 --- a/frontend/src/app/word-counter/page.tsx +++ b/frontend/src/app/word-counter/page.tsx @@ -29,7 +29,6 @@ export default function WordCounter() { return new Error(`Error: ${response.statusText}`); } const output: string = await response.text(); - console.log(output); setOutput(output); } catch (error) { console.error("Error while converting:", error);