diff --git a/src/app/features/collectibles/collectibles.tsx b/src/app/features/collectibles/collectibles.tsx index d68749e0168..7f440757a5b 100644 --- a/src/app/features/collectibles/collectibles.tsx +++ b/src/app/features/collectibles/collectibles.tsx @@ -32,7 +32,13 @@ export function Collectibles() { subHeader={whenWallet({ software: ( navigate(RouteUrls.RetriveTaprootFunds)} + onSelectRetrieveBalance={() => + navigate(RouteUrls.RetrieveTaprootFunds, { + state: { + backgroundLocation: { pathname: RouteUrls.Home }, + }, + }) + } /> ), ledger: null, diff --git a/src/app/routes/app-routes.tsx b/src/app/routes/app-routes.tsx index 4f1668dc512..7ec17bcc076 100644 --- a/src/app/routes/app-routes.tsx +++ b/src/app/routes/app-routes.tsx @@ -89,7 +89,7 @@ function useAppRoutes() { {homePageModalRoutes} - } /> + } /> }> {ledgerStacksTxSigningRoutes} diff --git a/src/shared/route-urls.ts b/src/shared/route-urls.ts index f0b247bbea5..b8cd76a91ef 100644 --- a/src/shared/route-urls.ts +++ b/src/shared/route-urls.ts @@ -55,7 +55,7 @@ export enum RouteUrls { EditNonce = 'edit-nonce', SelectNetwork = 'choose-network', SignOutConfirm = 'sign-out', - RetriveTaprootFunds = 'retrive-taproot-funds', + RetrieveTaprootFunds = 'retrieve-taproot-funds', // Send crypto asset routes SendCryptoAsset = '/send',