Skip to content

Commit

Permalink
현재 선택된 프로필 조회
Browse files Browse the repository at this point in the history
  • Loading branch information
ipcgrdn committed Dec 27, 2024
1 parent 702c576 commit ebd36fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/profileService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export interface Profile {

export const getProfile = async (): Promise<Profile | null> => {
try {
const response = await api.get<Profile>("/profile");
const response = await api.get<Profile>("/profile/now");

if (response.status === 200 && response.data) {
return response.data;
Expand Down

0 comments on commit ebd36fa

Please sign in to comment.