Skip to content

Commit

Permalink
fix: missing import switch
Browse files Browse the repository at this point in the history
  • Loading branch information
edusperoni committed Dec 7, 2024
1 parent 90c037c commit 678ee51
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/angular/src/lib/forms/forms.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ import { TextValueAccessor, CheckedValueAccessor, DateValueAccessor, TimeValueAc
export * from './value-accessors';

@NgModule({
declarations: [TextValueAccessor, CheckedValueAccessor, DateValueAccessor, TimeValueAccessor, SelectedIndexValueAccessor, NumberValueAccessor],
providers: [],
imports: [FormsModule],
imports: [FormsModule, TextValueAccessor, CheckedValueAccessor, DateValueAccessor, TimeValueAccessor, SelectedIndexValueAccessor, NumberValueAccessor],
exports: [FormsModule, TextValueAccessor, CheckedValueAccessor, DateValueAccessor, TimeValueAccessor, SelectedIndexValueAccessor, NumberValueAccessor],
})
export class NativeScriptFormsModule {}

0 comments on commit 678ee51

Please sign in to comment.