From 0949555602603b8611e72992dfce98f4ec47e114 Mon Sep 17 00:00:00 2001 From: Luc Mcgrady Date: Mon, 10 Nov 2025 21:13:40 +0000 Subject: [PATCH] remove console.log --- ts/routes/graphs/DifficultyGraph.svelte | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ts/routes/graphs/DifficultyGraph.svelte b/ts/routes/graphs/DifficultyGraph.svelte index f71ae794a..fecb94edc 100644 --- a/ts/routes/graphs/DifficultyGraph.svelte +++ b/ts/routes/graphs/DifficultyGraph.svelte @@ -27,12 +27,8 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html let range = PercentageRangeEnum.All; $: if (sourceData) { - const data = gatherData(sourceData); - - console.log(data.eases); - [histogramData, tableData] = prepareData( - data, + gatherData(sourceData), dispatch, $prefs.browserLinksSupported, PercentageRangeToQuantile(range),