1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-13 20:08:56 +00:00

Fixed name in component

This commit is contained in:
Vladimir Volek 2018-12-10 17:24:47 +01:00 committed by Szymon Lesisz
parent 1bfe5887d0
commit 461865de1c

View File

@ -44,7 +44,7 @@ const Img = styled.img`
padding-bottom: 20px;
`;
const StellarWallet = (props: Props) => (
const CardanoWallet = (props: Props) => (
<Wrapper>
<StyledLink onClick={props.onCancel}>
<Icon
@ -63,8 +63,8 @@ const StellarWallet = (props: Props) => (
</Wrapper>
);
StellarWallet.propTypes = {
CardanoWallet.propTypes = {
onCancel: PropTypes.func.isRequired,
};
export default StellarWallet;
export default CardanoWallet;