File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ const ActionStrip = ({ actions }) => (
38
38
39
39
ActionStrip . propTypes = {
40
40
actions : PropTypes . arrayOf ( PropTypes . shape ( {
41
- icon : PropTypes . element . isRequired ,
41
+ icon : PropTypes . any ,
42
42
aria : PropTypes . string . isRequired ,
43
43
action : PropTypes . func . isRequired ,
44
44
inverted : PropTypes . bool
Original file line number Diff line number Diff line change @@ -183,7 +183,6 @@ const MobileIDEView = (props) => {
183
183
const { consoleIsExpanded } = ide ;
184
184
const { name : filename } = selectedFile ;
185
185
186
-
187
186
// Force state reset
188
187
useEffect ( clearPersistedState , [ ] ) ;
189
188
useEffect ( ( ) => {
@@ -338,6 +337,7 @@ function mapStateToProps(state) {
338
337
state . files . find ( file => file . name === 'sketch.js' ) ||
339
338
state . files . find ( file => file . name !== 'root' ) ,
340
339
ide : state . ide ,
340
+ files : state . files ,
341
341
unsavedChanges : state . ide . unsavedChanges ,
342
342
preferences : state . preferences ,
343
343
user : state . user ,
You can’t perform that action at this time.
0 commit comments