From ebd36fa31fe452ca2e79d0bbdb1bb232ed71de4d Mon Sep 17 00:00:00 2001 From: choi Date: Fri, 27 Dec 2024 14:48:55 +0900 Subject: [PATCH] =?UTF-8?q?=ED=98=84=EC=9E=AC=20=EC=84=A0=ED=83=9D?= =?UTF-8?q?=EB=90=9C=20=ED=94=84=EB=A1=9C=ED=95=84=20=EC=A1=B0=ED=9A=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/services/profileService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/profileService.ts b/src/services/profileService.ts index 4cf5ead..d9eee3d 100644 --- a/src/services/profileService.ts +++ b/src/services/profileService.ts @@ -13,7 +13,7 @@ export interface Profile { export const getProfile = async (): Promise => { try { - const response = await api.get("/profile"); + const response = await api.get("/profile/now"); if (response.status === 200 && response.data) { return response.data;