Browse Source

ran nx format and nx test

pull/654/head
Ronald Konjer 3 years ago
parent
commit
184b041e7e
  1. 4
      apps/client/src/app/pages/portfolio/transactions/transactions-page.component.ts
  2. 1
      apps/client/src/app/services/import-transactions.service.ts

4
apps/client/src/app/pages/portfolio/transactions/transactions-page.component.ts

@ -190,7 +190,7 @@ export class TransactionsPageComponent implements OnDestroy, OnInit {
try { try {
await this.importTransactionsService.importJson({ await this.importTransactionsService.importJson({
content: content.orders, content: content.orders
}); });
this.handleImportSuccess(); this.handleImportSuccess();
@ -205,7 +205,7 @@ export class TransactionsPageComponent implements OnDestroy, OnInit {
await this.importTransactionsService.importCsv({ await this.importTransactionsService.importCsv({
fileContent, fileContent,
primaryDataSource: this.primaryDataSource, primaryDataSource: this.primaryDataSource,
user: this.user, user: this.user
}); });
this.handleImportSuccess(); this.handleImportSuccess();

1
apps/client/src/app/services/import-transactions.service.ts

@ -59,7 +59,6 @@ export class ImportTransactionsService {
}); });
} }
await this.importJson({ content: orders }); await this.importJson({ content: orders });
} }

Loading…
Cancel
Save