Skip to content

Commit fb647ec

Browse files
committed
fix(arc-saas): fixing test manage comp
fixing test manage comp GH-64
1 parent 2f52fdb commit fb647ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

projects/saas-ui/src/app/main/components/manage-plans/manage-plans.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@ export class ManagePlansComponent extends RouteComponentBaseDirective {
101101
return this.billingPlanService.getPlanOptions(filter).pipe(
102102
map(res => {
103103
try {
104-
const body = JSON.parse(JSON.stringify(res)).body;
105-
this.getResp = body;
106-
const rows = body.map(item => {
104+
// const body = JSON.parse(JSON.stringify(res)).body;
105+
// this.getResp = body;
106+
const rows = res.map(item => {
107107
return {
108108
id: item.id,
109109
name: item.name,

0 commit comments

Comments
 (0)