Renamed EthereumBlockchainCard

This change is purely internal to that component.
pull/168/head
Neeraj Kashyap 2021-08-25 03:35:22 -07:00
rodzic 6cebda5459
commit 5f973f83a3
1 zmienionych plików z 7 dodań i 3 usunięć

Wyświetl plik

@ -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;