diff --git a/src/components/tx-flow/flows/EnableRecovery/EnableRecoveryFlowIntro.tsx b/src/components/tx-flow/flows/EnableRecovery/EnableRecoveryFlowIntro.tsx index bd727faf11..ef28ee30b3 100644 --- a/src/components/tx-flow/flows/EnableRecovery/EnableRecoveryFlowIntro.tsx +++ b/src/components/tx-flow/flows/EnableRecovery/EnableRecoveryFlowIntro.tsx @@ -1,5 +1,5 @@ import { Button, CardActions, Divider, Grid, Typography } from '@mui/material' -import type { ReactElement, ReactNode } from 'react' +import type { ReactElement } from 'react' import TxCard from '../../common/TxCard' import RecoveryGuardians from '@/public/images/settings/spending-limit/beneficiary.svg' @@ -10,7 +10,7 @@ import RecoveryExecution from '@/public/images/transactions/recovery-execution.s import css from './styles.module.css' import commonCss from '@/components/tx-flow/common/styles.module.css' -const RecoverySteps: Array<{ Icon: ReactElement; title: string; subtitle: ReactNode }> = [ +const RecoverySteps = [ { Icon: RecoveryGuardians, title: 'Choose a guardian and set a delay', diff --git a/src/store/recoverySlice.ts b/src/store/recoverySlice.ts index 855bc2da0b..4a30b615ac 100644 --- a/src/store/recoverySlice.ts +++ b/src/store/recoverySlice.ts @@ -28,7 +28,7 @@ const { slice, selector } = makeLoadableSlice('recovery', initialState) export const recoverySlice = slice -const selectRecovery = createSelector(selector, (recovery) => recovery.data) +export const selectRecovery = createSelector(selector, (recovery) => recovery.data) export const selectRecoveryByGuardian = createSelector( [selectRecovery, (_: RootState, walletAddress: string) => walletAddress],