diff --git a/src/components/SettingsPage/index.js b/src/components/SettingsPage/index.js index 35afee4d..9c773cd7 100644 --- a/src/components/SettingsPage/index.js +++ b/src/components/SettingsPage/index.js @@ -16,7 +16,6 @@ import SectionCurrencies from './sections/Currencies' import SectionHelp from './sections/Help' import SectionAbout from './sections/About' import SectionExport from './sections/Export' -import SectionTools from './sections/Tools' const mapStateToProps = state => ({ accountsCount: accountsSelector(state).length, @@ -49,11 +48,6 @@ class SettingsPage extends PureComponent { label: , value: SectionCurrencies, }, - { - key: 'export', - label: , - value: SectionExport, - }, { key: 'about', label: , @@ -67,10 +61,10 @@ class SettingsPage extends PureComponent { ] if (EXPERIMENTAL_TOOLS_SETTINGS) { - this._items.push({ + this._items.splice(2, 0, { key: 'tool', label: 'Experimental Tools', - value: SectionTools, + value: SectionExport, }) } diff --git a/src/components/SettingsPage/sections/Tools.js b/src/components/SettingsPage/sections/Tools.js deleted file mode 100644 index d16ebc62..00000000 --- a/src/components/SettingsPage/sections/Tools.js +++ /dev/null @@ -1,19 +0,0 @@ -// @flow - -/* eslint-disable react/jsx-no-literals */ - -import React, { PureComponent } from 'react' -import { translate } from 'react-i18next' -import Box, { Card } from 'components/base/Box' - -class TabProfile extends PureComponent<*, *> { - render() { - return ( - - Nothing here - - ) - } -} - -export default translate()(TabProfile)