From 34e2f148dc3fa9e749b180ef5fce79f8dfcb4c9a Mon Sep 17 00:00:00 2001 From: choi Date: Thu, 19 Dec 2024 20:05:06 +0900 Subject: [PATCH] =?UTF-8?q?=ED=94=84=EB=A1=9C=ED=95=84=20=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=ED=84=B0=20=EC=A1=B0=ED=9A=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/user/[userId]/page.tsx | 7 +------ src/services/profileService.ts | 4 ++-- 2 files changed, 3 insertions(+), 8 deletions(-) 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; }