From 5f973f83a35c43b6e049bf1969268e1fae410b68 Mon Sep 17 00:00:00 2001 From: Neeraj Kashyap Date: Wed, 25 Aug 2021 03:35:22 -0700 Subject: [PATCH] Renamed EthereumBlockchainCard This change is purely internal to that component. --- .../src/components/stream-cards/EthereumBlockchain.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/stream-cards/EthereumBlockchain.js b/frontend/src/components/stream-cards/EthereumBlockchain.js index c4aef7c3..71d70fcf 100644 --- a/frontend/src/components/stream-cards/EthereumBlockchain.js +++ b/frontend/src/components/stream-cards/EthereumBlockchain.js @@ -17,7 +17,11 @@ import UIContext from "../../core/providers/UIProvider/context"; import { useToast } from "../../core/hooks"; import { useSubscriptions } from "../../core/hooks"; -const EthereumMempoolCard_ = ({ entry, showOnboardingTooltips, className }) => { +const EthereumBlockchainCard_ = ({ + entry, + showOnboardingTooltips, + className, +}) => { const { subscriptionsCache } = useSubscriptions(); const ui = useContext(UIContext); const [copyString, setCopyString] = useState(false); @@ -310,7 +314,7 @@ const EthereumMempoolCard_ = ({ entry, showOnboardingTooltips, className }) => { ); }; -const EthereumMempoolCard = chakra(EthereumMempoolCard_, { +const EthereumBlockchainCard = chakra(EthereumBlockchainCard_, { baseStyle: { my: 0, direction: "column", @@ -326,4 +330,4 @@ const EthereumMempoolCard = chakra(EthereumMempoolCard_, { }, }); -export default EthereumMempoolCard; +export default EthereumBlockchainCard;