diff --git a/src/components/gathering/createUpdate/editor/modal/GatheringParticipantsFilterModal.tsx b/src/components/gathering/createUpdate/editor/modal/GatheringParticipantsFilterModal.tsx index d824adb1..1fca0328 100644 --- a/src/components/gathering/createUpdate/editor/modal/GatheringParticipantsFilterModal.tsx +++ b/src/components/gathering/createUpdate/editor/modal/GatheringParticipantsFilterModal.tsx @@ -84,7 +84,7 @@ const GatheringParticipantsFilterModal = ( return (
@@ -244,13 +244,13 @@ const GatheringFilterModal = ({ closeModal }: IGatheringFilterModalProps) => { _endAge: i[1].endAge, }) } - className={`${directInput == false && (startAge || 0) <= i[1].startAge && (endAge || 0) >= i[1].endAge && "bg-main text-white"} flex flex-shrink-0 items-center rounded-[4rem] px-4 py-2 text-gray1 outline outline-[1px] outline-offset-[-1px] outline-[#E9EBED] hover:bg-main hover:text-white`} + className={`${directInput == false && (startAge || 0) <= i[1].startAge && (endAge || 0) >= i[1].endAge ? "bg-main text-white outline-0" : "outline outline-[1px] outline-offset-[-1px] outline-[#E9EBED]"} flex flex-shrink-0 items-center rounded-[4rem] px-4 py-2 text-gray1 hover:bg-main hover:text-white`} > {i[0]} ))}