Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit 1ed02f6

Browse files
committed
fix(change-detection): solving lint issues
1 parent e98def4 commit 1ed02f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/composables/useDynamicForm.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
ValidationEvent,
88
InputEvent,
99
DynamicForm,
10-
InputBase,
10+
FormFields,
1111
} from '@/core/models';
1212
import {
1313
computed,
@@ -41,7 +41,7 @@ interface DynamicFormComposition {
4141
mapControls: (empty?: boolean) => void;
4242
findControlByName: (name: string | unknown) => FormControl<InputType>;
4343
resetForm: () => void;
44-
detectChanges: (fields: InputBase[]) => void;
44+
detectChanges: (fields: FormFields) => void;
4545
}
4646

4747
export function useDynamicForm(

0 commit comments

Comments
 (0)