diff --git a/screen/wallets/list.js b/screen/wallets/list.js index dac4f0bb4..924a18470 100644 --- a/screen/wallets/list.js +++ b/screen/wallets/list.js @@ -76,10 +76,7 @@ const WalletsList = () => { if (wallets.length > walletsCount.current) { walletsCarousel.current?.scrollToItem({ item: wallets[walletsCount.current] }); } - // wallet has been deleted - if (wallets.length < walletsCount.current) { - walletsCarousel.current?.scrollToItem({ item: false }); - } + walletsCount.current = wallets.length; }, [wallets]);