Skip to content

Commit

Permalink
Merge branch 'release/v1.24.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
appsol committed Nov 21, 2023
2 parents c428a67 + 51011f6 commit dc43d4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/views/register/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import Form from "@/classes/Form";
import axios from "axios";
const http = axios.create({
baseURL: `${this.appApiUri}/core/v1`
baseURL: `${process.env.VUE_APP_API_URI}/core/v1`
});
http.defaults.headers.post["Content-Type"] = "application/json";
Expand Down
2 changes: 1 addition & 1 deletion src/views/register/forms/OrganisationSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
import axios from "axios";
const http = axios.create({
baseURL: `${this.appApiUri}/core/v1`
baseURL: `${process.env.VUE_APP_API_URI}/core/v1`
});
http.defaults.headers.post["Content-Type"] = "application/json";
Expand Down
2 changes: 1 addition & 1 deletion src/views/register/new/Register.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import Form from "@/classes/Form";
import axios from "axios";
const http = axios.create({
baseURL: `${this.appApiUri}/core/v1`
baseURL: `${process.env.VUE_APP_API_URI}/core/v1`
});
http.defaults.headers.post["Content-Type"] = "application/json";
Expand Down

0 comments on commit dc43d4f

Please sign in to comment.