diff --git a/packages/client/src/pages/AccountsHome/Section/Header/index.js b/packages/client/src/pages/AccountsHome/Section/Header/index.js index 640d872555..3684d2fb14 100644 --- a/packages/client/src/pages/AccountsHome/Section/Header/index.js +++ b/packages/client/src/pages/AccountsHome/Section/Header/index.js @@ -257,71 +257,61 @@ const SectionHeaderContent = (props) => { }; return ( - - {(context) => ( - - {isHeaderVisible ? ( -
- -
- ) : ( -
- <> - - {t("Accounts")} - - - {!isInfoPanelVisible && ( - - {!( - isTablet() || - isMobile || - isMobileUtils() || - !isDesktop() - ) && ( -
- -
- )} -
+ + {isHeaderVisible ? ( +
+ +
+ ) : ( +
+ <> + + {t("Accounts")} + + + {!isInfoPanelVisible && ( + + {!( + isTablet() || + isMobile || + isMobileUtils() || + !isDesktop() + ) && ( +
+ +
)} - -
- )} -
+ + )} + +
)} -
+ ); };