How to remove the Date 00:00:00.000000 in this 2022-08-07 00:00:00.0000000 format?
<mat-form-field class="full-width1" appearance="fill">
<mat-label>Date</mat-label>
<input matInput type="date" formControlName="Date">
</mat-form-field>
this.Form = this.fb.group({
deliveryDate: [this.formatDate(new Date()), Validators.required],
})
formatDate(date:Date){
return formatDate(date, this.dateFormat, this.language)
}