Hello everyone. I am using Angular 17 and Standalone Components.
I have main-page.components.ts that is opening a dialog with a component like this
this.dialog.open(OtherComponent);
Inside OtherComponent I have a form with a DatePicker. When I click on the datepicker I get this error
NullInjectorError: No provider for DateAdapter!```
I have `MatNativeDateModule` and `MatDatepickerModule` already imported in the OtherComponent
Do you guys have any clue?