Skip to content

Commit

Permalink
fix angular upgrade issue for b2b
Browse files Browse the repository at this point in the history
  • Loading branch information
i53577 committed Feb 10, 2025
1 parent 61c278c commit 2c47923
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ class MockUserRegistrationFormService

@Pipe({
name: 'cxUrl',
standalone: false,
})
class MockUrlPipe implements PipeTransform {
transform() {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import { HttpErrorResponse } from '@angular/common/http';
selector: 'cx-user-registration-form',
templateUrl: './user-registration-otp-form.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: false,
})
export class UserRegistrationOTPFormComponent {
protected routingService = inject(RoutingService);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ class MockStore {
}
@Pipe({
name: 'cxUrl',
standalone: false,
})
class MockUrlPipe implements PipeTransform {
transform() {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import { ONE_TIME_PASSWORD_REGISTRATION_PURPOSE } from '../user-registration-con
selector: 'cx-verification-token-form',
templateUrl: './verification-token-form.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: false,
})
export class RegisterVerificationTokenFormComponent implements OnInit {
protected service: RegisterVerificationTokenFormComponentService = inject(
Expand Down

0 comments on commit 2c47923

Please sign in to comment.