diff --git a/src/app/components/network-mode-badge.tsx b/src/app/components/network-mode-badge.tsx index 8e7b51ab1e..6f01a92886 100644 --- a/src/app/components/network-mode-badge.tsx +++ b/src/app/components/network-mode-badge.tsx @@ -8,6 +8,7 @@ import { RouteUrls } from '@shared/route-urls'; import { useCurrentNetworkState } from '@app/store/networks/networks.hooks'; +// TODO - need to refactor this so network is checked at top level and can be passed to page container export const NetworkModeBadge = memo(() => { const navigate = useNavigate(); const { chain, name } = useCurrentNetworkState(); diff --git a/src/app/components/request-password.tsx b/src/app/components/request-password.tsx index 1c3ab7ff2a..e8f5eb4f54 100644 --- a/src/app/components/request-password.tsx +++ b/src/app/components/request-password.tsx @@ -1,7 +1,7 @@ import { FormEvent, ReactNode, useCallback, useState } from 'react'; import { SettingsSelectors } from '@tests/selectors/settings.selectors'; -import { Box, Stack, styled } from 'leather-styles/jsx'; +import { Stack, styled } from 'leather-styles/jsx'; import { useAnalytics } from '@app/common/hooks/analytics/use-analytics'; import { useKeyActions } from '@app/common/hooks/use-key-actions'; @@ -58,12 +58,9 @@ export function RequestPassword({ }, [analytics, startWaitingMessage, stopWaitingMessage, unlockWallet, password, onSuccess]); if (sessionLocked) { - // /Pete - finish getting this working and looking well - - // then figure out how to get rid of the global header here and other such details - + // Pete - finish getting this working and looking well + // then figure out how to get rid of the global header here and other such details // get things working and then move on to popout headers - // maybe re-open PR in meantime with new components in storybook return ( diff --git a/src/app/pages/onboarding/set-password/set-password.tsx b/src/app/pages/onboarding/set-password/set-password.tsx index ab3cea7a35..04d1bad75e 100644 --- a/src/app/pages/onboarding/set-password/set-password.tsx +++ b/src/app/pages/onboarding/set-password/set-password.tsx @@ -124,6 +124,8 @@ function SetPasswordPage() { > {({ dirty, isSubmitting, isValid }) => (