diff --git a/src/components/SettingsPage/index.js b/src/components/SettingsPage/index.js index 9c773cd7..be00eb22 100644 --- a/src/components/SettingsPage/index.js +++ b/src/components/SettingsPage/index.js @@ -7,7 +7,6 @@ import { Trans, translate } from 'react-i18next' import type { T } from 'types/common' import { Switch, Route } from 'react-router' import type { RouterHistory, Match, Location } from 'react-router' -import { EXPERIMENTAL_TOOLS_SETTINGS } from 'config/constants' import { accountsSelector } from 'reducers/accounts' import Pills from 'components/base/Pills' import Box from 'components/base/Box' @@ -48,6 +47,11 @@ class SettingsPage extends PureComponent { label: , value: SectionCurrencies, }, + { + key: 'export', + label: , + value: SectionExport, + }, { key: 'about', label: , @@ -60,14 +64,6 @@ class SettingsPage extends PureComponent { }, ] - if (EXPERIMENTAL_TOOLS_SETTINGS) { - this._items.splice(2, 0, { - key: 'tool', - label: 'Experimental Tools', - value: SectionExport, - }) - } - this.state = { tab: this.getCurrentTab({ url: props.match.url, pathname: props.location.pathname }), } diff --git a/src/config/constants.js b/src/config/constants.js index 8194e649..8f43698d 100644 --- a/src/config/constants.js +++ b/src/config/constants.js @@ -84,7 +84,6 @@ export const DISABLE_ACTIVITY_INDICATORS = boolFromEnv('DISABLE_ACTIVITY_INDICAT export const EXPERIMENTAL_CENTER_MODAL = boolFromEnv('EXPERIMENTAL_CENTER_MODAL') export const EXPERIMENTAL_FIRMWARE_UPDATE = boolFromEnv('EXPERIMENTAL_FIRMWARE_UPDATE') export const EXPERIMENTAL_HTTP_ON_RENDERER = boolFromEnv('EXPERIMENTAL_HTTP_ON_RENDERER') -export const EXPERIMENTAL_TOOLS_SETTINGS = boolFromEnv('EXPERIMENTAL_TOOLS_SETTINGS') export const EXPERIMENTAL_MARKET_INDICATOR_SETTINGS = boolFromEnv( 'EXPERIMENTAL_MARKET_INDICATOR_SETTINGS', )