Skip to content

Commit

Permalink
Intialize refresh to false by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Tug committed Nov 9, 2018
1 parent aea46b7 commit 9b7802a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/AppContainer.js
Expand Up @@ -12,7 +12,7 @@ import RNReactNativeGutenbergBridge from 'react-native-gutenberg-bridge';

const mapStateToProps = ( state, ownProps ) => {
let blocks = ownProps.blocks;
let refresh = !! ownProps.refresh;
let refresh = false;

const newBlocks = ownProps.blocks.map( ( block ) => {
block.focused = ownProps.isBlockSelected( block.clientId );
Expand Down

0 comments on commit 9b7802a

Please sign in to comment.