diff --git a/src/components/tx-flow/flows/EnableRecovery/EnableRecoveryFlowEmailHint.tsx b/src/components/tx-flow/flows/EnableRecovery/EnableRecoveryFlowEmailHint.tsx
index 8a9ad8655e..4f5c81551e 100644
--- a/src/components/tx-flow/flows/EnableRecovery/EnableRecoveryFlowEmailHint.tsx
+++ b/src/components/tx-flow/flows/EnableRecovery/EnableRecoveryFlowEmailHint.tsx
@@ -3,7 +3,7 @@ import type { ReactElement } from 'react'
import LightbulbIcon from '@/public/images/common/lightbulb.svg'
-import infoWidgetCss from 'src/components/new-safe/create/InfoWidget/styles.module.css'
+import infoWidgetCss from '@/components/new-safe/create/InfoWidget/styles.module.css'
export function EnableRecoveryFlowEmailHint(): ReactElement {
return (
diff --git a/src/components/tx-flow/flows/EnableRecovery/EnableRecoveryFlowReview.tsx b/src/components/tx-flow/flows/EnableRecovery/EnableRecoveryFlowReview.tsx
index 245087b784..0b5322c5c9 100644
--- a/src/components/tx-flow/flows/EnableRecovery/EnableRecoveryFlowReview.tsx
+++ b/src/components/tx-flow/flows/EnableRecovery/EnableRecoveryFlowReview.tsx
@@ -17,7 +17,7 @@ import type { EnableRecoveryFlowProps } from '.'
export function EnableRecoveryFlowReview({ params }: { params: EnableRecoveryFlowProps }): ReactElement {
const web3 = useWeb3()
- const { safe } = useSafeInfo()
+ const { safe, safeAddress } = useSafeInfo()
const { setSafeTx, safeTxError, setSafeTxError } = useContext(SafeTxContext)
const guardian = params[EnableRecoveryFlowFields.guardians]
@@ -35,12 +35,13 @@ export function EnableRecoveryFlowReview({ params }: { params: EnableRecoveryFlo
const { transactions } = getRecoverySetup({
...params,
guardians: [guardian],
- safe,
+ chainId: safe.chainId,
+ safeAddress,
provider: web3,
})
createMultiSendCallOnlyTx(transactions).then(setSafeTx).catch(setSafeTxError)
- }, [guardian, params, safe, setSafeTx, setSafeTxError, web3])
+ }, [guardian, params, safe.chainId, safeAddress, setSafeTx, setSafeTxError, web3])
useEffect(() => {
if (safeTxError) {
diff --git a/src/components/tx-flow/flows/EnableRecovery/EnableRecoveryFlowSettings.tsx b/src/components/tx-flow/flows/EnableRecovery/EnableRecoveryFlowSettings.tsx
index 7bbac1363f..8ea926cf03 100644
--- a/src/components/tx-flow/flows/EnableRecovery/EnableRecoveryFlowSettings.tsx
+++ b/src/components/tx-flow/flows/EnableRecovery/EnableRecoveryFlowSettings.tsx
@@ -122,11 +122,15 @@ export function EnableRecoveryFlowSettings({