Skip to content

Commit

Permalink
Fix lint issue (#17598)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukewalczak authored and pinarol committed Sep 26, 2019
1 parent 1c9b133 commit df025a6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ function MediaPlaceholder( props ) {
accessibilityHint = __( 'Double tap to select a video' );
}

const emptyStateContainerStyle = getStylesFromColorScheme( styles.emptyStateContainer, styles.emptyStateContainerDark );
const emptyStateTitleStyle = getStylesFromColorScheme( styles.emptyStateTitle, styles.emptyStateTitleDark );

const renderContent = () => {
Expand Down Expand Up @@ -95,6 +94,8 @@ function MediaPlaceholder( props ) {
return null;
}

const emptyStateContainerStyle = getStylesFromColorScheme( styles.emptyStateContainer, styles.emptyStateContainerDark );

return (
<View style={ { flex: 1 } }>
<MediaUpload
Expand Down

0 comments on commit df025a6

Please sign in to comment.