Skip to content

Commit

Permalink
CP-5464 Fix disappearing network cards (#673)
Browse files Browse the repository at this point in the history
  • Loading branch information
neven-s authored Apr 27, 2023
1 parent 2355488 commit fdc83f0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/screens/portfolio/home/Portfolio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ const TokensTab = () => {
return (
<Animated.View
sharedTransitionTag={
Platform.OS === 'ios' ? 'inactive-network-card' : undefined
Platform.OS === 'ios'
? 'inactive-network-card' + item.index
: undefined
}
exiting={FadeOutUp.duration(300)}
entering={FadeInDown.delay(300).duration(300)}>
Expand Down

0 comments on commit fdc83f0

Please sign in to comment.