Skip to content

Commit

Permalink
fix: update badge label from 'Tags libres' to 'Tags personnalisés'
Browse files Browse the repository at this point in the history
  • Loading branch information
elisfainstein committed Jan 7, 2025
1 parent e705a34 commit c166f2d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ export const useFiltersToBadges = ({ filters, customValues }: Args) => {
);
} else if (key === 'libreTags') {
badgeValues.push(
`Tags libres : ${mergedFilters[key]?.map((i) => i.nom).join(', ')}`
`Tags personnalisés : ${mergedFilters[key]
?.map((i) => i.nom)
.join(', ')}`
);
} else if (key === 'thematiques') {
badgeValues.push(
Expand Down

0 comments on commit c166f2d

Please sign in to comment.