Skip to content

Commit

Permalink
fix: SoptActivity에서 초기값 지정 방식 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
simeunseo committed Jan 4, 2025
1 parent 06a62da commit 419d8b6
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/components/members/upload/FormSection/SoptActivity.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,6 @@ export default function MemberSoptActivityFormSection({
<StyledSelect
placeholder='활동기수'
options={FILTERED_GENERATIONS}
value={
FILTERED_GENERATIONS.find((option) => option.value === field.value) || {
label: field.value,
value: field.value,
}
}
onChange={(value) => {
field.onChange(value);
handleClickDisabled?.();
Expand Down Expand Up @@ -159,7 +153,6 @@ export default function MemberSoptActivityFormSection({
<StyledSelect
placeholder='운팀/미팀 여부'
options={TEAMS}
value={TEAMS.find((option) => option.value === field.value)}
onChange={(value) => {
field.onChange(value);
handleClickDisabled?.();
Expand Down

0 comments on commit 419d8b6

Please sign in to comment.