Skip to content

Commit

Permalink
fix: coffeechatform의 career 항목에 대해 string[] 타입 비허용
Browse files Browse the repository at this point in the history
  • Loading branch information
simeunseo committed Dec 19, 2024
1 parent f904e75 commit 8e534e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/coffeechat/upload/CoffeechatForm/types.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export interface CoffeechatFormContent {
memberInfo: {
career: string[] | string | null | undefined;
career: string | null | undefined;
introduction: string | null | undefined;
};
coffeeChatInfo: {
Expand Down
3 changes: 1 addition & 2 deletions src/components/members/main/MemberList/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { css } from '@emotion/react';
import styled from '@emotion/styled';
import { colors } from '@sopt-makers/colors';
import { IconChevronDown, IconSwitchVertical } from '@sopt-makers/icons';
import { IconSwitchVertical } from '@sopt-makers/icons';
import { SearchField } from '@sopt-makers/ui';
import { debounce, uniq } from 'lodash-es';
import Link from 'next/link';
Expand Down Expand Up @@ -31,7 +31,6 @@ import {
TEAM_OPTIONS,
} from '@/components/members/main/MemberList/filters/constants';
import MemberListFilter from '@/components/members/main/MemberList/filters/MemberListFilter';
import MemberListFilterSheet from '@/components/members/main/MemberList/filters/MemberListFilterSheet';
import { MemberListOrder } from '@/components/members/main/MemberList/filters/MemberListOrder';
import { LATEST_GENERATION } from '@/constants/generation';
import { playgroundLink } from '@/constants/links';
Expand Down

0 comments on commit 8e534e7

Please sign in to comment.