feat: add importance property to category breakdown and update team stats structure

This commit is contained in:
Julien Froidefond
2025-10-12 16:03:11 +02:00
parent 7d12a66c12
commit ad5d954182
3 changed files with 9 additions and 4 deletions

View File

@@ -23,6 +23,7 @@ interface CategoryBreakdownProps {
id: string;
name: string;
icon?: string;
importance: "incontournable" | "majeure" | "standard";
}>;
}>;
}