diff --git a/packages/web-domains/src/home/features/progressing-question/components/GatherName/GatherName.tsx b/packages/web-domains/src/home/features/progressing-question/components/GatherName/GatherName.tsx index bda8f3b4..e250ecdc 100644 --- a/packages/web-domains/src/home/features/progressing-question/components/GatherName/GatherName.tsx +++ b/packages/web-domains/src/home/features/progressing-question/components/GatherName/GatherName.tsx @@ -5,7 +5,7 @@ import { HTMLAttributes } from 'react'; import { Avatar } from '../../../../common/components/Avatar/Avatar'; interface GatherNameProps extends HTMLAttributes { - gatherName: string; + gatherName?: string; profileImage?: string; } diff --git a/packages/web-domains/src/home/features/progressing-question/services/useProgressingQuestionService.tsx b/packages/web-domains/src/home/features/progressing-question/services/useProgressingQuestionService.tsx index 4ea86745..453f2126 100644 --- a/packages/web-domains/src/home/features/progressing-question/services/useProgressingQuestionService.tsx +++ b/packages/web-domains/src/home/features/progressing-question/services/useProgressingQuestionService.tsx @@ -22,6 +22,7 @@ export const useProgressingQuestionService = () => { }); const meetingId = meetingInfo?.meetings[0]?.meetingId; + const meetingTitle = meetingInfo?.meetings[0]?.name; const { data: myInfo } = useGetMyInfo({ params: { meetingId: meetingId! }, @@ -56,7 +57,7 @@ export const useProgressingQuestionService = () => { return { meetingId, - gatherName: '삼봤드의 모험', + gatherName: meetingTitle, progressingQuestion, myInfo, };