Fixed flow errors on a few 'view.jsx' files and 'form-field.jsx' #2049

Merged
dannycalleri merged 2 commits from fixed-flow-errors-view-files into master 2018-10-22 17:44:18 +02:00
4 changed files with 6 additions and 8 deletions

View file

@ -22,7 +22,7 @@ type Props = {
button: ?string, // primary, secondary, alt, link
noPadding: ?boolean, // to remove padding and allow circular buttons
uppercase: ?boolean,
iconColor: ?string,
iconColor?: string,
tourniquet: ?boolean, // to shorten the button and ellipsis, only use for links
};

View file

@ -16,7 +16,7 @@ type Props = {
// see Stripe docs for more info:
// https://stripe.com/docs/checkout#integration-custom
// =====================================================
// Your publishable key (test or live).
// can't use "key" as a prop in react, so have to change the keyname
stripeKey: string,
@ -50,7 +50,7 @@ class CardVerify extends React.Component {
const script = document.createElement('script');
script.src = 'https://checkout.stripe.com/checkout.js';
script.async = 1;
script.async = true;
this.loadPromise = (() => {
let canceled = false;

View file

@ -4,16 +4,14 @@ import CardMedia from 'component/cardMedia';
import TruncatedText from 'component/common/truncated-text';
import classnames from 'classnames';
import SubscribeButton from 'component/subscribeButton';
import type { Claim } from 'types/claim';
type Props = {
uri: string,
isResolvingUri: boolean,
totalItems: number,
neb-b commented 2018-10-21 20:27:36 +02:00 (Migrated from github.com)
Review

This should use the Claim type in types/claim

This should use the `Claim` type in `types/claim`
dannycalleri commented 2018-10-22 17:43:36 +02:00 (Migrated from github.com)
Review

Sorry, didn't notice that @seanyesmunt :)

Sorry, didn't notice that @seanyesmunt :)
dannycalleri commented 2018-10-22 17:44:01 +02:00 (Migrated from github.com)
Review

Changed 🤘

Changed 🤘
size: string,
claim: ?{
claim_id: string,
name: string,
},
claim: ?Claim,
resolveUri: string => void,
navigate: (string, ?{}) => void,
};

View file

@ -25,7 +25,7 @@ type Props = {
affixClass?: string, // class applied to prefix/postfix label
firstInList?: boolean, // at the top of a list, no padding top
autoFocus?: boolean,
inputProps: {
inputProps?: {
disabled?: boolean,
},
};