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

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
cometkim committed Nov 6, 2019
1 parent 36432ea commit f775b22
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion components/save_button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import LoadingWrapper from 'components/widgets/loading/loading_wrapper';

type Props = {
intl: IntlShape;
saving: boolean;
saving?: boolean;
disabled?: boolean;
id?: string;
onClick?: (e: React.MouseEvent<HTMLButtonElement>) => void;
Expand Down
1 change: 0 additions & 1 deletion components/widgets/icons/fa_previous_icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ type Props = {

type DefaultProps = {
additionalClassName: string | null;
intl: IntlShape;
}

class PreviousIcon extends React.PureComponent<Props> {
Expand Down

0 comments on commit f775b22

Please sign in to comment.