diff --git a/src/App.jsx b/src/App.jsx index f6e48bb..07ee00f 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -98,7 +98,6 @@ class App extends IPCContainer { !this.props.DownloadActive && (selectedVersion !== 'unavailable') && (selectedVersion !== this.props.InstalledVersion); - console.log(selectedVersion); const missingDependencies = (this.props.MissingDependencies.length > 0) && this.props.AllowMount; diff --git a/src/components/ApplicationBusy/ApplicationBusy.js b/src/components/ApplicationBusy/ApplicationBusy.js index dc28d08..d2b478a 100644 --- a/src/components/ApplicationBusy/ApplicationBusy.js +++ b/src/components/ApplicationBusy/ApplicationBusy.js @@ -3,7 +3,7 @@ import Box from '../UI/Box/Box'; import Loader from 'react-loader-spinner'; import Text from '../UI/Text/Text'; -export default ({title}) => { +const ApplicationBusy = ({title}) => { return ( { ); -} +}; + +export default ApplicationBusy; diff --git a/src/components/UI/Box/Box.js b/src/components/UI/Box/Box.js index d4dd5e7..afc77be 100644 --- a/src/components/UI/Box/Box.js +++ b/src/components/UI/Box/Box.js @@ -1,7 +1,7 @@ import React from 'react'; import './Box.css'; -export default props => { +const Box = props => { const styleList = []; styleList.push('Box'); if (props.dxDark) { @@ -24,5 +24,6 @@ export default props => { {props.children} ); +}; -}; \ No newline at end of file +export default Box; diff --git a/src/components/UI/Button/Button.js b/src/components/UI/Button/Button.js index ae1b462..d7fc34d 100644 --- a/src/components/UI/Button/Button.js +++ b/src/components/UI/Button/Button.js @@ -1,7 +1,7 @@ import React from 'react'; import './Button.css'; -export default props => { +const Button = props => { return (