Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
fix(FormFileInput): Removed console.log debug statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronCoplan committed Dec 5, 2018
1 parent 022cea2 commit 628e1f3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/components/Form/FormFileInput.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ class FormFileInput extends React.Component<Props, State> {
};

_handleOnChange = (event: SyntheticInputEvent<HTMLInputElement>): void => {
console.log(event.target.files);
this.setState({ fileName: event.target.files[0].name });
if (this.props.onChange) {
this.props.onChange(event);
Expand Down

0 comments on commit 628e1f3

Please sign in to comment.