Skip to content

Commit ea8f152

Browse files
committed
fix: TT-33 unused variable deleted
1 parent fafe5bc commit ea8f152

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/modules/shared/components/input-date/input-date.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class InputDateComponent implements ControlValueAccessor {
2323
onChange = (_: any) => { };
2424
onTouch = () => { };
2525

26-
onInput(value: moment.Moment, date: DateAdapter<Date>) {
26+
onInput(value: moment.Moment) {
2727
this.value = value.format(DATE_FORMAT_YEAR);
2828
this.onTouch();
2929
this.onChange(this.value);

0 commit comments

Comments
 (0)