Skip to content

Commit 682e2cf

Browse files
committed
resolution to web-118
1 parent 4094e8a commit 682e2cf

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/app/loans/glim-account/create-glim-account/create-glim-account.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ import { STANDALONE_SHARED_IMPORTS } from 'app/standalone-shared.module';
4747
LoansAccountScheduleStepComponent,
4848
LoansAccountDatatableStepComponent,
4949
LoansAccountPreviewStepComponent
50-
]
50+
],
51+
providers: [I18nService]
5152
})
5253
export class CreateGlimAccountComponent {
5354
private route = inject(ActivatedRoute);

src/app/loans/loans-account-stepper/loans-account-details-step/loans-account-details-step.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ export class LoansAccountDetailsStepComponent implements OnInit, OnDestroy {
199199
this.loanOfficerOptions = response.loanOfficerOptions;
200200
this.loanPurposeOptions = response.loanPurposeOptions;
201201
this.fundOptions = response.fundOptions;
202-
this.accountLinkingOptions = response.accountLinkingOptions;
202+
this.accountLinkingOptions = response.accountLinkingOptions.filter((acc: any) => !acc.clientId);
203203
this.loanProductSelected = true;
204204
if (response.createStandingInstructionAtDisbursement) {
205205
this.loansAccountDetailsForm

0 commit comments

Comments
 (0)