Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
bistaastha committed Jan 7, 2025
1 parent b30d0f9 commit e905388
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ fdescribe('SpenderOnboardingConnectCardStepComponent', () => {
Validators.required,
Validators.maxLength(16),
// @ts-ignore
component.cardNumberValidator.bind(this),
component.cardNumberValidator.bind(component),
// @ts-ignore
component.cardNetworkValidator.bind(this),
component.cardNetworkValidator.bind(component),
]),
],
});
Expand All @@ -149,9 +149,9 @@ fdescribe('SpenderOnboardingConnectCardStepComponent', () => {
Validators.required,
Validators.maxLength(16),
// @ts-ignore
component.cardNumberValidator.bind(this),
component.cardNumberValidator.bind(component),
// @ts-ignore
component.cardNetworkValidator.bind(this),
component.cardNetworkValidator.bind(component),
]),
],
});
Expand Down

0 comments on commit e905388

Please sign in to comment.