Skip to content

Commit

Permalink
fix: uncapitalise Boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
Fsalker committed May 1, 2020
1 parent da9c616 commit 4c2834c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/app-admin/src/components/SingleImageUpload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ type SingleImageUploadProps = FormComponentProps & {
imagePreviewProps?: any;

// Is the wrapper round?
round?: Boolean;
round?: boolean;
};

export default class SingleImageUpload extends React.Component<SingleImageUploadProps> {
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/ImageUpload/Image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type Props = {
placeholder: string;
style?: { [key: string]: any };
renderImagePreview?: (props: any) => React.ReactElement<any>;
round?: Boolean;
round?: boolean;
};

class Image extends React.Component<Props> {
Expand Down

0 comments on commit 4c2834c

Please sign in to comment.