Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: minor
Type: add

Open up new Account Details in the Overview page by removing the feature flag
3 changes: 1 addition & 2 deletions client/overview/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ const OverviewPage = () => {
accountLoans: { has_active_loan: hasActiveLoan },
overviewTasksVisibility,
wpcomReconnectUrl,
featureFlags: { isAccountDetailsEnabled },
accountDetails,
} = wcpaySettings;

Expand Down Expand Up @@ -376,7 +375,7 @@ const OverviewPage = () => {
</ErrorBoundary>
) }
<ErrorBoundary>
{ isAccountDetailsEnabled && accountDetails ? (
{ accountDetails ? (
<AccountDetails
accountDetails={ accountDetails }
accountFees={ activeAccountFees }
Expand Down
Loading