Skip to content

Commit

Permalink
#16 fix: 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
leejin-rho committed Jul 3, 2024
1 parent 55b2d10 commit 3fd6a82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apis/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ export type centerProps = {
};

export interface getCenterListBody {
ceterList: centerProps[];
centerList: centerProps[];
}

export const getCenterList = async () => {
try {
const response = await client.get("/users/signupView");
return response.data.result.ceterList;
return response.data.result.centerList;
} catch (error) {
if (error.response) {
console.error(error.response);
Expand Down

0 comments on commit 3fd6a82

Please sign in to comment.