Skip to content

Commit

Permalink
fix: wrong import
Browse files Browse the repository at this point in the history
  • Loading branch information
edusperoni committed Dec 17, 2024
1 parent 36dda98 commit 72e7aae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/angular/src/lib/cdk/dialog/dialog-services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class NativeDialog implements OnDestroy {
private _defaultOptions = inject(NATIVE_DIALOG_DEFAULT_OPTIONS, {
optional: true,
});
private _parentDialog = inject(NativeDialogService, { optional: true, skipSelf: true });
private _parentDialog = inject(NativeDialog, { optional: true, skipSelf: true });
private _dialogRefConstructor: Type<NativeDialogRef<any>> = NativeDialogRef;
private _nativeModalType = NativeModalRef;
private _dialogDataToken = NATIVE_DIALOG_DATA;
Expand Down

0 comments on commit 72e7aae

Please sign in to comment.