Skip to content
Merged
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
4 changes: 2 additions & 2 deletions src/features/my-page/ui/profile-edit-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ function ProfileEditForm({
<FormField
label="Github"
type="text"
description="스터디 진행을 위한 연락 가능한 정보를 입력해 주세요."
description="본인의 활동을 확인할 수 있는 GitHub 링크를 입력해 주세요."
value={profileForm.githubLink}
onChange={(value) =>
setProfileForm({
Expand Down Expand Up @@ -250,7 +250,7 @@ function ProfileEditForm({
<FormField
label="한마디 소개"
type="textarea"
description="스터디 진행을 위한 연락 가능한 정보를 입력해 주세요."
description="본인을 간단히 소개하는 한마디를 입력해 주세요."
value={profileForm.simpleIntroduction}
onChange={(value) =>
setProfileForm({ ...profileForm, simpleIntroduction: value })
Expand Down