diff --git a/src/components/members/main/MemberList/index.tsx b/src/components/members/main/MemberList/index.tsx index acfbb2597..e70c84fd2 100644 --- a/src/components/members/main/MemberList/index.tsx +++ b/src/components/members/main/MemberList/index.tsx @@ -260,19 +260,12 @@ const MemberList: FC = ({ banner }) => { `} > {`전체 ${memberProfileData.pages[0].totalMembersCount}명`} - ( - - - {placeholder} - - - - )} + icon={} /> )} @@ -613,35 +606,6 @@ const StyledMobileFilterWrapper = styled.div` display: none; /* Chrome, Safari, Opera */ } `; -const StyledMobileFilter = styled(MemberListFilterSheet)` - flex: none; -`; - -const MobileFilterTrigger = styled.button<{ selected?: boolean }>` - display: flex; - gap: 12px; - align-items: center; - justify-content: center; - border: 1px solid transparent; - border-radius: 10px; - background: ${colors.gray800}; - padding: 11px 16px; - width: max-content; - min-width: fit-content; - height: 48px; - color: ${colors.gray300}; - ${({ selected }) => - selected && - css` - color: ${colors.white}; - `} -`; - -const StyledChevronDown = styled(IconChevronDown)` - width: 20px; - height: 20px; - color: ${colors.white}; -`; const StyledSwitchVertical = styled(IconSwitchVertical)` width: 20px; @@ -649,8 +613,7 @@ const StyledSwitchVertical = styled(IconSwitchVertical)` color: ${colors.gray300}; `; -const OrderFilter = styled.div` - display: flex; - gap: 12px; - align-items: center; +const StyledBottomSheetSelect = styled(BottomSheetSelect)` + background-color: transparent; + color: ${colors.gray300}; `;