Skip to content

Commit

Permalink
fix: conflict 충돌로 인한 코드 오류 수정 (#513) (#514)
Browse files Browse the repository at this point in the history
  • Loading branch information
turtle601 authored and TaeyeonRoyce committed Sep 25, 2023
1 parent 13e1bdb commit 2ef4b3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/api/restaurant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { RestaurantsQueryParams } from '~/@types/restaurant.types';
export const getRestaurants = async (queryParams: RestaurantsQueryParams) => {
if (queryParams.boundary) {
const queryString = getQueryString(queryParams);
const response = await apiClient.get<RestaurantListData>(`/restaurants?${queryString}`);
const response = await apiUserClient.get<RestaurantListData>(`/restaurants?${queryString}`);

return response.data;
}
Expand Down

0 comments on commit 2ef4b3c

Please sign in to comment.