diff --git a/src/app/features/container/headers/unlock.header.tsx b/src/app/features/container/headers/unlock.header.tsx index 288e102df43..30d76864eb6 100644 --- a/src/app/features/container/headers/unlock.header.tsx +++ b/src/app/features/container/headers/unlock.header.tsx @@ -1,15 +1,13 @@ import { useNavigate, useOutletContext } from 'react-router-dom'; import { SettingsSelectors } from '@tests/selectors/settings.selectors'; -import { SharedComponentsSelectors } from '@tests/selectors/shared-component.selectors'; -import { ArrowLeftIcon, HamburgerIcon } from '@leather.io/ui'; +import { HamburgerIcon } from '@leather.io/ui'; import { RouteUrls } from '@shared/route-urls'; import { SwitchAccountOutletContext } from '@shared/switch-account'; import { Header } from '@app/components/layout/headers/header'; -import { HeaderActionButton } from '@app/components/layout/headers/header-action-button'; import { HeaderGrid, HeaderGridRightCol } from '@app/components/layout/headers/header-grid'; import { LogoBox } from '@app/components/layout/headers/logo-box'; import { Settings } from '@app/features/settings/settings'; @@ -20,34 +18,20 @@ export function UnlockHeader() { const navigate = useNavigate(); return ( - <> -
- - } - onAction={() => navigate(-1)} - dataTestId={SharedComponentsSelectors.HeaderBackBtn} - /> - - navigate(RouteUrls.Home)} - hideBelow={undefined} - hideFrom="sm" - /> - - } - rightCol={ - - } - toggleSwitchAccount={() => setIsShowingSwitchAccount(!isShowingSwitchAccount)} - /> - - } - /> -
- +
+ navigate(RouteUrls.Home)} hideBelow={undefined} hideFrom="sm" /> + } + rightCol={ + + } + toggleSwitchAccount={() => setIsShowingSwitchAccount(!isShowingSwitchAccount)} + /> + + } + /> +
); }