Skip to content

Commit

Permalink
fix(wallet-mobile): Navigate to portfolio after clicking back on NFT …
Browse files Browse the repository at this point in the history
…detail (#3725)
  • Loading branch information
michaeljscript authored Nov 6, 2024
1 parent d79a936 commit a918442
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const useNavigateTo = () => {
navigation.navigate('portfolio-token-details', {id: params.id}),
nftsList: () => navigation.navigate('portfolio-nfts', {screen: 'nft-gallery'}),
nftDetails: (id: Portfolio.Token.Id) =>
navigation.navigate('portfolio-nfts', {screen: 'nft-details', params: {id}, initial: false}),
navigation.navigate('portfolio-nfts', {screen: 'nft-details', params: {id}, initial: true}),
resetTabAndSend: () => {
navigation.reset({index: 0, routes: [{name: 'dashboard-portfolio'}]})
navigation.navigate('history', {screen: 'send-start-tx'})
Expand Down

0 comments on commit a918442

Please sign in to comment.