diff --git a/suite-native/module-add-accounts/src/hooks/useAddCoinAccount.ts b/suite-native/module-add-accounts/src/hooks/useAddCoinAccount.ts index be2c21017ca..9b389e2c256 100644 --- a/suite-native/module-add-accounts/src/hooks/useAddCoinAccount.ts +++ b/suite-native/module-add-accounts/src/hooks/useAddCoinAccount.ts @@ -148,6 +148,17 @@ export const useAddCoinAccount = () => { accountIndex: number; }) => { switch (flowType) { + case 'home': + navigation.replace(RootStackRoutes.ReceiveStack, { + screen: ReceiveStackRoutes.ReceiveAccount, + params: { + networkSymbol: symbol, + accountType, + accountIndex, + closeActionType: 'close', + }, + }); + break; case 'accounts': navigation.replace(RootStackRoutes.AccountDetail, { networkSymbol: symbol,