From 624a8e55f82078fa2f2754bab8bb85bb0fccf063 Mon Sep 17 00:00:00 2001 From: noumantahir Date: Thu, 17 Feb 2022 22:09:46 +0500 Subject: [PATCH] fixed priceHistory rename crash --- src/screens/wallet/screen/walletScreen.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screens/wallet/screen/walletScreen.tsx b/src/screens/wallet/screen/walletScreen.tsx index d804dac7c..154432f01 100644 --- a/src/screens/wallet/screen/walletScreen.tsx +++ b/src/screens/wallet/screen/walletScreen.tsx @@ -40,7 +40,7 @@ const WalletScreen = ({navigation}) => { const isDarkTheme = useAppSelector((state) => state.application.isDarkTheme); const currency = useAppSelector((state)=>state.application.currency); const selectedCoins = useAppSelector((state)=>state.wallet.selectedCoins); - const priceHistories = useAppSelector((state)=>state.wallet.priceHistory); + const priceHistories = useAppSelector((state)=>state.wallet.priceHistories); const coinsData = useAppSelector((state)=>state.wallet.coinsData); const globalProps = useAppSelector((state)=>state.account.globalProps); const currentAccount = useAppSelector((state)=>state.account.currentAccount);