Skip to content

Commit a8fbf54

Browse files
committed
feat: change get num price url endpoint
1 parent 3f24a31 commit a8fbf54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/shared/dia-backend/num/dia-backend-num.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Injectable } from '@angular/core';
33
import { defer } from 'rxjs';
44
import { concatMap } from 'rxjs/operators';
55
import { DiaBackendAuthService } from '../auth/dia-backend-auth.service';
6-
import { BASE_URL, BUBBLE_API_URL } from '../secret';
6+
import { BASE_URL, BUBBLE_IFRAME_URL } from '../secret';
77

88
@Injectable({
99
providedIn: 'root',
@@ -33,7 +33,7 @@ export class DiaBackendNumService {
3333
// ask @ethan wu to change bubble endpoint from POST to GET
3434
return defer(() =>
3535
this.httpClient.post<NumPointPriceListResponse>(
36-
`${BUBBLE_API_URL}/version-num-points-price-list/api/1.1/wf/num-points-price-list`,
36+
`${BUBBLE_IFRAME_URL}/api/1.1/wf/get_num_price`,
3737
{}
3838
)
3939
);

0 commit comments

Comments
 (0)