diff --git a/nativescript-angular/forms/value-accessors/checked-value-accessor.ts b/nativescript-angular/forms/value-accessors/checked-value-accessor.ts index 6053ee700..8bb77ec09 100644 --- a/nativescript-angular/forms/value-accessors/checked-value-accessor.ts +++ b/nativescript-angular/forms/value-accessors/checked-value-accessor.ts @@ -24,7 +24,6 @@ const CHECKED_VALUE_ACCESSOR = { "switch[ngModel],switch[formControlName],switch[formControl]", providers: [CHECKED_VALUE_ACCESSOR], host: { - "(touch)": "onTouched()", "(checkedChange)": "onChange($event.value)", }, }) diff --git a/nativescript-angular/forms/value-accessors/time-value-accessor.ts b/nativescript-angular/forms/value-accessors/time-value-accessor.ts index 6be6851ee..0eea501ed 100644 --- a/nativescript-angular/forms/value-accessors/time-value-accessor.ts +++ b/nativescript-angular/forms/value-accessors/time-value-accessor.ts @@ -26,7 +26,6 @@ const TIME_VALUE_ACCESSOR = { "time-picker[ngModel],time-picker[formControlName],time-picker[formControl]", providers: [TIME_VALUE_ACCESSOR], host: { - "(touch)": "onTouched()", "(timeChange)": "onChange($event.value)", }, })