fix references to partner API server

This commit is contained in:
2025-03-13 19:14:59 -06:00
parent f48dd21fd3
commit 0e8657058c

View File

@@ -1039,7 +1039,7 @@ export default class AccountViewView extends Vue {
try {
const headers = await getHeaders(this.activeDid);
const response = await this.axios.get(
this.apiServer +
this.partnerApiServer +
"/api/partner/userProfileForIssuer/" +
this.activeDid,
{ headers },
@@ -1857,7 +1857,7 @@ export default class AccountViewView extends Vue {
);
}
const response = await this.axios.post(
this.apiServer + "/api/partner/userProfile",
this.partnerApiServer + "/api/partner/userProfile",
payload,
{ headers },
);
@@ -1945,7 +1945,7 @@ export default class AccountViewView extends Vue {
try {
const headers = await getHeaders(this.activeDid);
const response = await this.axios.delete(
this.apiServer + "/api/partner/userProfile",
this.partnerApiServer + "/api/partner/userProfile",
{ headers },
);
if (response.status === 204) {