components/frontend/src/dashboard/MetricSummaryCard.js
Function ariaChartLabel
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function ariaChartLabel(summary) {
let label = ""
Object.entries(summary).forEach(([date, count]) => {
const nrMetrics = sum(count)
const nrMetricsLabel = nrMetrics === 0 ? "no metrics" : pluralize(`${nrMetrics} metric`, nrMetrics)