chore(charts): drop sonar S6478 JSDoc on PieTooltipRow

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Dhruwang
2026-05-12 11:31:38 +05:30
parent 99e378ae2e
commit c48474b943
@@ -21,7 +21,6 @@ const formatPieLabel = ({ name, percent }: { name: string; percent?: number }):
return `${formatXAxisTick(name)}: ${(percent * 100).toFixed(0)}%`;
};
/** Pie tooltip row defined at module scope so it isn't a nested component in ChartRenderer (sonar S6478). */
const PieTooltipRow = ({ value, name }: Readonly<{ value: unknown; name: string }>) => {
const { t } = useTranslation();
return (