Skip to content

Commit

Permalink
fix: styling issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Federico Zivolo committed Jan 23, 2019
1 parent 5236785 commit cd2165c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/react-forms/src/InputDate/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ function toYYYYMMDD(date) {
}

type Props = {
styles?: Object,
outerClassName?: string,
value: string,
onChange: Function,
isOpen?: boolean,
Expand Down Expand Up @@ -87,7 +85,6 @@ export default class InputDate extends React.Component<Props, State> {
render() {
const {
value,
outerClassName,
onChange, // eslint-disable-line no-unused-vars
isOpen: isOpenProp, // eslint-disable-line no-unused-vars
onToggle, // eslint-disable-line no-unused-vars
Expand All @@ -107,7 +104,7 @@ export default class InputDate extends React.Component<Props, State> {
return (
<MouseOutside onClickOutside={this.handleClose}>
{mouseOutsideRef => (
<span ref={mouseOutsideRef}>
<span ref={mouseOutsideRef} className={className}>
<Manager>
<Reference>
{({ ref }) => (
Expand Down

0 comments on commit cd2165c

Please sign in to comment.