Browse Source

Flow fix

master
meriadec 7 years ago
parent
commit
39bd1ce838
No known key found for this signature in database GPG Key ID: 1D2FC2305E2CB399
  1. 2
      src/components/SelectCurrency/index.js
  2. 2
      src/components/base/Select/index.js

2
src/components/SelectCurrency/index.js

@ -14,7 +14,7 @@ import Select from 'components/base/Select'
import Box from 'components/base/Box'
type OwnProps = {
onChange: Option => void,
onChange: (?Option) => void,
currencies?: CryptoCurrency[],
value?: CryptoCurrency,
placeholder: string,

2
src/components/base/Select/index.js

@ -11,7 +11,7 @@ type Props = {
// required
value: ?Option,
options: Option[],
onChange: Option => void,
onChange: (?Option) => void,
// custom renders
renderOption: Option => Node,

Loading…
Cancel
Save