From 4fe3d6cd5b5b1270651f8291c7c848201ed4e67a Mon Sep 17 00:00:00 2001 From: martinkrulltott Date: Fri, 2 Feb 2024 13:31:26 +0000 Subject: [PATCH] chore: remove ! used for testing --- src/components/Visualization/useAnalyticsData.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Visualization/useAnalyticsData.js b/src/components/Visualization/useAnalyticsData.js index e966f6b75..40bbb0138 100644 --- a/src/components/Visualization/useAnalyticsData.js +++ b/src/components/Visualization/useAnalyticsData.js @@ -330,7 +330,7 @@ const extractHeaders = (analyticsResponse, outputType) => { const labels = dimensionsWithSuffix.map(({ name, suffix, id }) => ({ id, - label: suffix ? `${name}, ${suffix} !!!` : name, // TODO: remove the !!!, just for testing + label: suffix ? `${name}, ${suffix}` : name, })) const headers = analyticsResponse.headers.map((header, index) => {