Skip to content

Commit

Permalink
fix: 미팅 타이틀 기본값 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrevile committed Aug 21, 2024
1 parent f804000 commit 8f36650
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { HTMLAttributes } from 'react';
import { Avatar } from '../../../../common/components/Avatar/Avatar';

interface GatherNameProps extends HTMLAttributes<HTMLDivElement> {
gatherName: string;
gatherName?: string;
profileImage?: string;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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! },
Expand Down Expand Up @@ -56,7 +57,7 @@ export const useProgressingQuestionService = () => {

return {
meetingId,
gatherName: '삼봤드의 모험',
gatherName: meetingTitle,
progressingQuestion,
myInfo,
};
Expand Down

0 comments on commit 8f36650

Please sign in to comment.