diff --git a/src/app/user/[userId]/page.tsx b/src/app/user/[userId]/page.tsx index f090f04..0c9102b 100644 --- a/src/app/user/[userId]/page.tsx +++ b/src/app/user/[userId]/page.tsx @@ -119,12 +119,7 @@ export default function UserPage() {
- Hello! My name is Raro, and im passionate about exploring new - ideas and cultures. I enjoy reading, traveling, and meeting new - people. Currently, im pursuing my interests in technology and - innovation, aiming to make a positive impact in the world. I - believe in lifelong learning and always seek to grow personally - and professionally + {profileData?.description}
diff --git a/src/services/profileService.ts b/src/services/profileService.ts index 072addf..056e1cd 100644 --- a/src/services/profileService.ts +++ b/src/services/profileService.ts @@ -42,11 +42,11 @@ export const getProfile = async (): Promise => { } catch (error) { if (axios.isAxiosError(error)) { console.error( - `앨범 데이터 조회 실패: ${error.response?.status}`, + `프로필 데이터 조회 실패: ${error.response?.status}`, error.message ); } else { - console.error("앨범 데이터 조회 중 알 수 없는 오류 발생:", error); + console.error("프로필 데이터 조회 중 알 수 없는 오류 발생:", error); } throw error; }