Skip to content

Commit

Permalink
[FIX] 매거진 세부 api 호출 주소 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
boeunLee committed May 9, 2024
1 parent b443b25 commit ec303f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/hooks/useGetMagazineDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const useGetMagazineDetail = (magazineId: string) => {
isError: false,
};
}
const { data, error } = useSWR<AxiosResponse<magazineDetail>>(`/api/v1/admin/magazine/detail?magazineId=${+magazineId}`, gamGetFetcher, {
const { data, error } = useSWR<AxiosResponse<magazineDetail>>(`/api/v1/magazine/detail?magazineId=${+magazineId}`, gamGetFetcher, {
errorRetryCount: 3,
shouldRetryOnError: false,
});
Expand Down

0 comments on commit ec303f9

Please sign in to comment.