Skip to content

Commit

Permalink
chore: 스네이크 케이스로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
seojisoosoo committed Nov 5, 2024
1 parent 7c878c3 commit 7422f35
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
8 changes: 3 additions & 5 deletions src/components/eventLogger/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ type Coffeechat = {
bio: string;
section: string[];
title: string;
topicTag: string[];
topicDetail: string;
meetingType: string;
topic_tag: string[];
topic_detail: string;
meeting_type: string;
guideline: string;
generation: number[];
part: string[];
Expand Down Expand Up @@ -170,8 +170,6 @@ export interface SubmitEvents {
postResolution: undefined;

openCoffeechat: Coffeechat;
sendCoffeechat: Coffeechat & { sendContent: string };

coffeechatDelete: undefined;
editCoffeechat: undefined;
}
Expand Down
6 changes: 3 additions & 3 deletions src/pages/coffeechat/upload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ const CoffeechatUpload = () => {
bio: memberInfo.introduction ?? '',
section: coffeeChatInfo.sections ?? [],
title: coffeeChatInfo.bio ?? '',
topicTag: coffeeChatInfo.topicTypes ?? [],
topicDetail: coffeeChatInfo.topic ?? '',
topic_tag: coffeeChatInfo.topicTypes ?? [],
topic_detail: coffeeChatInfo.topic ?? '',
guideline: coffeeChatInfo.guideline ?? '',
meetingType: coffeeChatInfo.meetingType ?? '',
meeting_type: coffeeChatInfo.meetingType ?? '',
generation: generations ?? [],
part: part ?? [],
});
Expand Down

0 comments on commit 7422f35

Please sign in to comment.