Skip to content

Commit

Permalink
fix: default max associate cause selection
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementNumericite committed Feb 2, 2024
1 parent 46726d4 commit 6f31009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp-next/components/filters/AssociateCauses.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const FilterAssociateCauses = (props: Props) => {
const [search, setSearch] = useState('');
const debouncedSearchTerm = useDebounce(search, 300);
const maxSelection = parseInt(
(process.env.NEXT_PUBLIC_MAX_ASSOCIATE_CAUSE_SELECTION as string) || '2'
(process.env.NEXT_PUBLIC_MAX_ASSOCIATE_CAUSE_SELECTION as string) || '3'
);
const { isOpen, onOpen, onClose } = useDisclosure();

Expand Down

0 comments on commit 6f31009

Please sign in to comment.