Skip to content

Commit

Permalink
chore: remove ! used for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
martinkrulltott committed Feb 2, 2024
1 parent 49b7fef commit 4fe3d6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Visualization/useAnalyticsData.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down

0 comments on commit 4fe3d6c

Please sign in to comment.