From 30178b807c3e4167d96810c77febba73d88c6ace Mon Sep 17 00:00:00 2001 From: Laurian-Dufrechou Date: Mon, 22 May 2023 17:18:45 +0200 Subject: [PATCH] fix(pieChart labels en francais): labels francais --- src/components/graph/PieChart.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/graph/PieChart.tsx b/src/components/graph/PieChart.tsx index 3f3c02f..142db0a 100644 --- a/src/components/graph/PieChart.tsx +++ b/src/components/graph/PieChart.tsx @@ -41,7 +41,7 @@ const PieChart = () => { // Préparer les données pour le chart const data = { - labels: ["MALE", "FEMALE", "OTHER", "UNKNOWN"], + labels: ["Homme", "Femme", "Autre", "Inconnu"], datasets: [ { data: countGenders(),