Skip to content

Commit

Permalink
fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
lukejianu committed Nov 18, 2023
1 parent a86e414 commit 683ffed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/api-client/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ class APIClient {
return responseClass ? plainToInstance(responseClass, res) : res;
}

constructor(baseURL = "api.graduate.com") {
constructor(url = "https://api.graduatenu.com/api") {
this.axios = Axios.create({
baseURL: baseURL,
url: url,
headers: { "content-type": "application/json" },
});
}
Expand Down

0 comments on commit 683ffed

Please sign in to comment.