Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ interface Props {
}

export const DescriptionProfile = ({
hostInfo: { nickName, profileImage, userId },
hostInfo: { userId, nickName, profileImage, profileMessage },
conditions: { isHost, isPast },
}: Props) => {
return (
Expand All @@ -29,7 +29,7 @@ export const DescriptionProfile = ({

<div className='flex flex-col justify-center *:line-clamp-1'>
<p className='text-text-md-semibold text-gray-800'>{nickName}</p>
<p className='text-text-xs-regular text-gray-600'>some dummy bio text</p>
{profileMessage && <p className='text-text-xs-regular text-gray-600'>{profileMessage}</p>}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

드디어 dummy에서 벗어나는군요

</div>
</Link>
{isPast && <p className='text-text-xs-semibold pr-1 text-gray-500'>모임 마감</p>}
Expand Down
1 change: 1 addition & 0 deletions src/types/service/group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ export interface GetGroupDetailsResponse {
userId: number;
nickName: string;
profileImage: string;
profileMessage: string;
};
createdAt: string;
updatedAt: string;
Expand Down