Skip to content

Commit

Permalink
preparation for 0.4.0 release: comment out TODOs on settings page
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Verhoelen committed Apr 26, 2019
1 parent 5d34da3 commit e085860
Showing 1 changed file with 9 additions and 17 deletions.
26 changes: 9 additions & 17 deletions src/renderer/explorer-app/pages/SettingsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,13 @@ import { Settings } from '../../common/Settings'

export default function SettingsPage() {
const { environmentTestSuccessful } = Settings.getSystemSettings()

return <>
<h4>Settings</h4>
{/*<m.CardPanel>*/}
{/** SHORTCURT for Global Search Window<br/>*/}
{/** LIGHT and DARK theme<br/>*/}
{/** start On Login<br/>*/}
{/** show Tray<br/>*/}
{/** hide explorer when Global Search Window is closed<br/>*/}
{/*</m.CardPanel>*/}

<h4>Environment Test</h4>
{environmentTestSuccessful && <strong>🙌 The last test was successful 🙌</strong>}
<m.CardPanel>
<EnvironmentTest/>
</m.CardPanel>
</>
return (
<>
<h4>Environment Test</h4>
{environmentTestSuccessful && <strong>🙌 The last test was successful 🙌</strong>}
<m.CardPanel>
<EnvironmentTest/>
</m.CardPanel>
</>
)
}

0 comments on commit e085860

Please sign in to comment.