From d6dab294c2070d7911819f749ff9287cabbc916d Mon Sep 17 00:00:00 2001 From: Dmitriy Kudasov Date: Mon, 9 Dec 2024 14:52:07 +0300 Subject: [PATCH] feat: Add more placeholders to tokens list --- src/screens/transaction-select-crypto.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/screens/transaction-select-crypto.tsx b/src/screens/transaction-select-crypto.tsx index bfb0bdac2..cb546fc4c 100644 --- a/src/screens/transaction-select-crypto.tsx +++ b/src/screens/transaction-select-crypto.tsx @@ -55,8 +55,8 @@ export const TransactionSelectCryptoScreen = observer(() => { }; if (Token.isLoading) { - return ( - + return Array.from({length: 6}).map((_, index) => ( + @@ -75,7 +75,7 @@ export const TransactionSelectCryptoScreen = observer(() => { - ); + )); } return ;