Skip to content

Commit f170583

Browse files
committed
Removed console logs
1 parent 6dda1d5 commit f170583

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

__tests__/TextField.test.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,6 @@ describe('TextField test', () => {
125125
</div>
126126
);
127127

128-
console.log(container.html());
129-
130-
131128
expect(container.find('.form-field-base .form-field-actions > *').length).toBe(1);
132129
});
133130
});

src/components/SelectField/SelectFieldInput.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ const SelectFieldInput = React.forwardRef<HTMLSelectElement, SelectFieldProps>((
3636
useEffect(() => {
3737
if (!inputValue) {
3838
const initialValue = value || defaultValue || determineInitialValue(children);
39-
console.log(initialValue);
4039
fieldContext.changeValue(!!initialValue);
4140
setInputValue(initialValue.toString());
4241
}

0 commit comments

Comments
 (0)