diff --git a/packages/frontend/src/components/chips/ContactChips.tsx b/packages/frontend/src/components/chips/ContactChips.tsx index 4ddf40d4..a78ee72c 100644 --- a/packages/frontend/src/components/chips/ContactChips.tsx +++ b/packages/frontend/src/components/chips/ContactChips.tsx @@ -9,7 +9,7 @@ export const ContactChips = (props: FlexProps) => { const selected = useWatch({ control: form.control, name: "contacts" })?.split(",") ?? []; - const chipOptions = useChipOptions("contacts-utiles", true); + const chipOptions = useChipOptions("contacts-utiles"); const options: ChipGroupOption[] = (chipOptions ?? []).map((chip) => ({ label: chip.value, key: chip.value, diff --git a/packages/frontend/src/components/chips/FurtherInfoChips.tsx b/packages/frontend/src/components/chips/FurtherInfoChips.tsx index eef970a9..2bd302bd 100644 --- a/packages/frontend/src/components/chips/FurtherInfoChips.tsx +++ b/packages/frontend/src/components/chips/FurtherInfoChips.tsx @@ -9,7 +9,7 @@ export const FurtherInfoChips = (props: FlexProps) => { const selected = useWatch({ control: form.control, name: "furtherInformation" })?.split(",") ?? []; - const chipOptions = useChipOptions("bonnes-pratiques", true); + const chipOptions = useChipOptions("bonnes-pratiques"); const options: ChipGroupOption[] = (chipOptions ?? []).map((chip) => ({ label: chip.value, key: chip.value,