From 16daddf0e01c517f83ffcb3dcaa8d9ac957f2d07 Mon Sep 17 00:00:00 2001 From: josefaidt Date: Fri, 21 Apr 2023 15:15:08 -0700 Subject: [PATCH] disable csv download --- src/routes/dashboard/+page.svelte | 4 ++-- src/routes/dashboard/QuestionBarChart.svelte | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/routes/dashboard/+page.svelte b/src/routes/dashboard/+page.svelte index 562485e4..b6edb833 100644 --- a/src/routes/dashboard/+page.svelte +++ b/src/routes/dashboard/+page.svelte @@ -220,7 +220,7 @@

Questions Dashboard

-
Download CSV -
+ -->
diff --git a/src/routes/dashboard/QuestionBarChart.svelte b/src/routes/dashboard/QuestionBarChart.svelte index afff7d4d..cd042c45 100644 --- a/src/routes/dashboard/QuestionBarChart.svelte +++ b/src/routes/dashboard/QuestionBarChart.svelte @@ -89,7 +89,6 @@ } $: data = createBarChartData(questions, timePeriod) - $: console.log({ timePeriod, data })