🐛 fix unused vars on IDEViewMobile

This commit is contained in:
ghalestrilo 2020-06-15 18:47:08 -03:00
parent 11adfbfca5
commit 32dd85eb69

View file

@ -105,37 +105,37 @@ const IDEViewMobile = (props) => {
<Content> <Content>
<Editor <Editor
lintWarning={props.preferences.lintWarning} lintWarning={preferences.lintWarning}
linewrap={props.preferences.linewrap} linewrap={preferences.linewrap}
lintMessages={props.editorAccessibility.lintMessages} lintMessages={editorAccessibility.lintMessages}
updateLintMessage={props.updateLintMessage} updateLintMessage={updateLintMessage}
clearLintMessage={props.clearLintMessage} clearLintMessage={clearLintMessage}
file={props.selectedFile} file={selectedFile}
updateFileContent={props.updateFileContent} updateFileContent={updateFileContent}
fontSize={props.preferences.fontSize} fontSize={preferences.fontSize}
lineNumbers={props.preferences.lineNumbers} lineNumbers={preferences.lineNumbers}
files={props.files} files={files}
editorOptionsVisible={props.ide.editorOptionsVisible} editorOptionsVisible={ide.editorOptionsVisible}
showEditorOptions={props.showEditorOptions} showEditorOptions={showEditorOptions}
closeEditorOptions={props.closeEditorOptions} closeEditorOptions={closeEditorOptions}
showKeyboardShortcutModal={props.showKeyboardShortcutModal} showKeyboardShortcutModal={showKeyboardShortcutModal}
setUnsavedChanges={props.setUnsavedChanges} setUnsavedChanges={setUnsavedChanges}
isPlaying={props.ide.isPlaying} isPlaying={ide.isPlaying}
theme={props.preferences.theme} theme={preferences.theme}
startRefreshSketch={props.startRefreshSketch} startRefreshSketch={startRefreshSketch}
stopSketch={props.stopSketch} stopSketch={stopSketch}
autorefresh={props.preferences.autorefresh} autorefresh={preferences.autorefresh}
unsavedChanges={props.ide.unsavedChanges} unsavedChanges={ide.unsavedChanges}
projectSavedTime={props.project.updatedAt} projectSavedTime={project.updatedAt}
isExpanded={props.ide.sidebarIsExpanded} isExpanded={ide.sidebarIsExpanded}
expandSidebar={props.expandSidebar} expandSidebar={expandSidebar}
collapseSidebar={props.collapseSidebar} collapseSidebar={collapseSidebar}
isUserOwner={setTmController} isUserOwner={setTmController}
clearConsole={props.clearConsole} clearConsole={clearConsole}
consoleEvents={props.console} consoleEvents={console}
showRuntimeErrorWarning={props.showRuntimeErrorWarning} showRuntimeErrorWarning={showRuntimeErrorWarning}
hideRuntimeErrorWarning={props.hideRuntimeErrorWarning} hideRuntimeErrorWarning={hideRuntimeErrorWarning}
runtimeErrorWarningVisible={props.ide.runtimeErrorWarningVisible} runtimeErrorWarningVisible={ide.runtimeErrorWarningVisible}
provideController={setTmController} provideController={setTmController}
/> />
</Content> </Content>