We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e15c21b commit a240a2aCopy full SHA for a240a2a
client/modules/IDE/components/PreviewFrame.jsx
@@ -366,10 +366,12 @@ PreviewFrame.defaultProps = {
366
const mapStateToProps = state => ({
367
files: state.files,
368
htmlFile: getHTMLFile(state.files),
369
- ...state.ide,
370
- ...state.preferences,
371
- ...state.project,
372
- ...state.editorAccessibility
+ isPlaying: state.ide.isPlaying,
+ isAccessibleOutputPlaying: state.ide.isAccessibleOutputPlaying,
+ previewIsRefreshing: state.ide.previewIsRefreshing,
+ textOutput: state.preferences.textOutput,
373
+ gridOutput: state.preferences.gridOutput,
374
+ soundOutput: state.preferences.soundOutput,
375
});
376
377
const mapDispatchToProps = dispatch => bindActionCreators(
0 commit comments