diff --git a/__tests__/shared/components/Settings/Account/__snapshots__/index.jsx.snap b/__tests__/shared/components/Settings/Account/__snapshots__/index.jsx.snap index a893682b08..706a373936 100644 --- a/__tests__/shared/components/Settings/Account/__snapshots__/index.jsx.snap +++ b/__tests__/shared/components/Settings/Account/__snapshots__/index.jsx.snap @@ -10,12 +10,6 @@ exports[`renders account setting page correctly 1`] = ` , "my account": diff --git a/__tests__/shared/components/Settings/Account/index.jsx b/__tests__/shared/components/Settings/Account/index.jsx index ab7a1d2bc0..0bd72d407d 100644 --- a/__tests__/shared/components/Settings/Account/index.jsx +++ b/__tests__/shared/components/Settings/Account/index.jsx @@ -12,7 +12,7 @@ const settingsUI = { TABS: { ACCOUNT: { MYACCOUNT: 'my account', - LINKEDACCOUNT: 'linked account', + // LINKEDACCOUNT: 'linked account', }, }, }; diff --git a/src/shared/components/Settings/Account/index.jsx b/src/shared/components/Settings/Account/index.jsx index 123dd15e55..e738b8ee3b 100644 --- a/src/shared/components/Settings/Account/index.jsx +++ b/src/shared/components/Settings/Account/index.jsx @@ -8,7 +8,7 @@ import _ from 'lodash'; import Accordion from 'components/Settings/Accordion'; import MyAccountIcon from 'assets/images/account/sideicons/myaccount.svg'; -import LinkedAccountIcon from 'assets/images/account/sideicons/linkedaccount.svg'; +// import LinkedAccountIcon from 'assets/images/account/sideicons/linkedaccount.svg'; import ErrorWrapper from 'components/Settings/ErrorWrapper'; import SideBar from '../SideBar'; import ComingSoon from '../ComingSoon'; @@ -74,7 +74,7 @@ export default class Account extends React.Component { const currentTab = this.tablink || settingsUI.currentAccountTab; const icons = { 'my account': , - 'linked accounts': , + // 'linked accounts': , }; const renderTabContent = (tab) => { switch (tab) { diff --git a/src/shared/reducers/page/ui/settings.js b/src/shared/reducers/page/ui/settings.js index 16d69c61f0..b0440eaed7 100644 --- a/src/shared/reducers/page/ui/settings.js +++ b/src/shared/reducers/page/ui/settings.js @@ -25,7 +25,7 @@ const TABS = { }, ACCOUNT: { MYACCOUNT: 'my account', - LINKEDACCOUNT: 'linked accounts', + // LINKEDACCOUNT: 'linked accounts', }, };