Skip to content

Commit e1d9c2c

Browse files
committed
feat: hide manage BA link in SFDC
1 parent 3237ab5 commit e1d9c2c

File tree

1 file changed

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

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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)