Skip to content

Commit

Permalink
JSX formatting style
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbachhuber committed May 3, 2018
1 parent ae96590 commit 1916026
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions editor/components/post-featured-image/check.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ import PostTypeSupportCheck from '../post-type-support-check';
import ThemeSupportCheck from '../theme-support-check';

function PostFeaturedImageCheck( props ) {
return <ThemeSupportCheck supportKeys="post-thumbnails">
<PostTypeSupportCheck { ...props } supportKeys="thumbnail" />
</ThemeSupportCheck>;
return (
<ThemeSupportCheck supportKeys="post-thumbnails">
<PostTypeSupportCheck { ...props } supportKeys="thumbnail" />
</ThemeSupportCheck>
);
}

export default PostFeaturedImageCheck;

0 comments on commit 1916026

Please sign in to comment.