Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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 @@ -15,7 +15,7 @@ const mockUserInfo = {
nickname: '닉네임',
email: 'email',
description: 'description',
profileImage: 'https://example.com/image.jpg',
profileImage: '/image.jpg',
};

const mock = {
Expand All @@ -25,7 +25,7 @@ const mock = {
id: 1,
nickname: '녹차라떼',
role: 'string',
profileImage: 'string',
profileImage: '/image.jpg',
},
hashTags: '#겨울여행#액티비티',
description:
Expand Down Expand Up @@ -109,7 +109,7 @@ describe('여행 모임장이 아닐 때', () => {
id: 2,
nickname: '녹차라떼',
role: 'string',
profileImage: 'string',
profileImage: '/string.png',
},
hashTags: '#겨울여행#액티비티',
description:
Expand Down
2 changes: 1 addition & 1 deletion src/components/travel/detail/category/TabTravelDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const TabTravelDetail = ({
<section>
<div className="flex items-center justify-between pb-[18px]">
<div className="flex items-center gap-[7px]">
<UserIcon size="sm" />
<UserIcon size="sm" profileImage={organizer?.profileImage} />

<div className="body-2-sb">{organizer && organizer.nickname}</div>
</div>
Expand Down
Loading