File tree 4 files changed +4
-11
lines changed
__tests__/shared/components/Settings/Account
components/Settings/Account
4 files changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,6 @@ exports[`renders account setting page correctly 1`] = `
10
10
<SideBar
11
11
icons = {
12
12
Object {
13
- " linked accounts" : <LinkedAccountIcon
14
- height = " 30"
15
- viewBox = " 0 0 30 30"
16
- width = " 30"
17
- xmlns = " http://www.w3.org/2000/svg"
18
- />,
19
13
" my account" : <MyAccountIcon
20
14
height = " 30"
21
15
viewBox = " 0 0 30 30"
@@ -27,7 +21,6 @@ exports[`renders account setting page correctly 1`] = `
27
21
names = {
28
22
Array [
29
23
" my account" ,
30
- " linked account" ,
31
24
]
32
25
}
33
26
/>
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const settingsUI = {
12
12
TABS : {
13
13
ACCOUNT : {
14
14
MYACCOUNT : 'my account' ,
15
- LINKEDACCOUNT : 'linked account' ,
15
+ // LINKEDACCOUNT: 'linked account',
16
16
} ,
17
17
} ,
18
18
} ;
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import _ from 'lodash';
8
8
9
9
import Accordion from 'components/Settings/Accordion' ;
10
10
import MyAccountIcon from 'assets/images/account/sideicons/myaccount.svg' ;
11
- import LinkedAccountIcon from 'assets/images/account/sideicons/linkedaccount.svg' ;
11
+ // import LinkedAccountIcon from 'assets/images/account/sideicons/linkedaccount.svg';
12
12
import ErrorWrapper from 'components/Settings/ErrorWrapper' ;
13
13
import SideBar from '../SideBar' ;
14
14
import ComingSoon from '../ComingSoon' ;
@@ -74,7 +74,7 @@ export default class Account extends React.Component {
74
74
const currentTab = this . tablink || settingsUI . currentAccountTab ;
75
75
const icons = {
76
76
'my account' : < MyAccountIcon /> ,
77
- 'linked accounts' : < LinkedAccountIcon /> ,
77
+ // 'linked accounts': <LinkedAccountIcon />,
78
78
} ;
79
79
const renderTabContent = ( tab ) => {
80
80
switch ( tab ) {
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ const TABS = {
25
25
} ,
26
26
ACCOUNT : {
27
27
MYACCOUNT : 'my account' ,
28
- LINKEDACCOUNT : 'linked accounts' ,
28
+ // LINKEDACCOUNT: 'linked accounts',
29
29
} ,
30
30
} ;
31
31
You can’t perform that action at this time.
0 commit comments