Skip to content

Commit 9b2d9fd

Browse files
committed
feat: Remove Billing Account ID in Left Sidebar
ref issue #4275
1 parent 17be432 commit 9b2d9fd

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/projects/detail/containers/ProjectInfoContainer.js

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,6 @@ class ProjectInfoContainer extends React.Component {
484484
const isProjectActive = project.status === PROJECT_STATUS_ACTIVE
485485
const isV3Project = project.version === 'v3'
486486
const projectCanBeActive = !isV3Project || (!isProjectActive && hasReviewedOrActivePhases) || isProjectActive
487-
const BillingInfo = project.billingAccountId ? `BillingAccountId - ${project.billingAccountId}` : 'Billing Account Not Attached'
488487

489488
return (
490489
<div>
@@ -538,16 +537,6 @@ class ProjectInfoContainer extends React.Component {
538537
<ProjectDirectLinks
539538
directLinks={directLinks}
540539
/>
541-
{project.billingAccountId ?
542-
<div styleName="billing-account-info">
543-
{BillingInfo}
544-
</div>
545-
:
546-
<div styleName="billing-account-info">
547-
{BillingInfo}
548-
</div>
549-
550-
}
551540
</div>}
552541

553542
{!hideInfo && <div styleName="project-status-toggle">

0 commit comments

Comments
 (0)