diff --git a/components/Modal/Modal.tsx b/components/Modal/Modal.tsx index e041d50..dbfa652 100644 --- a/components/Modal/Modal.tsx +++ b/components/Modal/Modal.tsx @@ -68,7 +68,7 @@ const Modal = ({ />
- 위키에 작성하기 위해
+ 다음 퀴즈를 맞추고
- 아래 퀴즈에 답해주세요.
+ 위키를 작성해 보세요.
{QUIZ_MESSAGES.WIKI_DESCRIPTION}
diff --git a/components/UserProfile.tsx b/components/UserProfile.tsx index 96ccc63..714afd7 100644 --- a/components/UserProfile.tsx +++ b/components/UserProfile.tsx @@ -24,11 +24,11 @@ function UserProfile({ // 프로필 이미지 관련 상태와 이벤트 핸들러 훅 const { - isLoading, // 이미지 로딩 상태 - previewImage, // 이미지 미리보기 URL - fileInputRef, // 파일 입력 요소 참조 - handleImageClick, // 이미지 클릭 핸들러 - handleFileChange, // 파일 변경 핸들러 + isLoading, + previewImage, + fileInputRef, + handleImageClick, + handleFileChange, } = useProfileImage((url) => onDataChange('image', url)); /** @@ -52,24 +52,26 @@ function UserProfile({ } return ( -+
{label} - {data[field]} - {/* truncate 클래스 - overflow:hidden, text-overflow:ellipsis, white-space:nowrap */} + {data[field]}
); }; return ( - // 메인 컨테이너 -