From e08586036057fedf128012251ba2b7037a4b0907 Mon Sep 17 00:00:00 2001 From: Jonas Verhoelen Date: Fri, 26 Apr 2019 13:35:42 +0200 Subject: [PATCH] preparation for 0.4.0 release: comment out TODOs on settings page --- .../explorer-app/pages/SettingsPage.tsx | 26 +++++++------------ 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/src/renderer/explorer-app/pages/SettingsPage.tsx b/src/renderer/explorer-app/pages/SettingsPage.tsx index c4997c1..2085332 100644 --- a/src/renderer/explorer-app/pages/SettingsPage.tsx +++ b/src/renderer/explorer-app/pages/SettingsPage.tsx @@ -6,21 +6,13 @@ import { Settings } from '../../common/Settings' export default function SettingsPage() { const { environmentTestSuccessful } = Settings.getSystemSettings() - - return <> -

Settings

- {/**/} - {/** SHORTCURT for Global Search Window
*/} - {/** LIGHT and DARK theme
*/} - {/** start On Login
*/} - {/** show Tray
*/} - {/** hide explorer when Global Search Window is closed
*/} - {/*
*/} - -

Environment Test

- {environmentTestSuccessful && 🙌 The last test was successful 🙌} - - - - + return ( + <> +

Environment Test

+ {environmentTestSuccessful && 🙌 The last test was successful 🙌} + + + + + ) }