Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ledouxm committed May 2, 2024
1 parent aafe8b3 commit aac3166
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/frontend/src/components/chips/ContactChips.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit aac3166

Please sign in to comment.