Skip to content

Commit e7e8d6e

Browse files
author
vikasrohit
authored
Merge pull request #4312 from appirio-tech/hotfix/hide-manage-ba-in-sfdc-link
[PROD] [HOTFIX] Hide manage ba in sfdc link
2 parents 3237ab5 + 0daa583 commit e7e8d6e

File tree

1 file changed

+4
-3
lines changed
  • src/projects/detail/components/BillingAccountField

1 file changed

+4
-3
lines changed

src/projects/detail/components/BillingAccountField/index.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {HOC as hoc} from 'formsy-react'
33

44
import Select from '../../../../components/Select/Select'
55
import {fetchBillingAccounts} from '../../../../api/billingAccounts'
6-
import {SALESFORCE_PROJECT_LEAD_LINK} from '../../../../config/constants'
6+
// import {SALESFORCE_PROJECT_LEAD_LINK} from '../../../../config/constants'
77

88
import styles from './styles.module.scss'
99

@@ -90,7 +90,8 @@ class BillingAccountField extends React.Component {
9090
options={this.state.billingAccounts}
9191
isDisabled={this.state.billingAccounts.length === 0}
9292
/>
93-
<div className={styles.manageBillingAccountLinkWrapper}>
93+
{/* Hide this link because we haven't implemented a required page in SFDC yet */}
94+
{/* <div className={styles.manageBillingAccountLinkWrapper}>
9495
<a
9596
className={styles.manageBillingAccountLink}
9697
href={`${SALESFORCE_PROJECT_LEAD_LINK}${this.props.projectId}`}
@@ -99,7 +100,7 @@ class BillingAccountField extends React.Component {
99100
>
100101
Manage the billing account in Salesforce
101102
</a>
102-
</div>
103+
</div> */}
103104
</div>
104105
)
105106
}

0 commit comments

Comments
 (0)