1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-12-23 23:48:07 +00:00

quickfix: remove pathname from props in TopNavigationAccount component

This commit is contained in:
Szymon Lesisz 2018-10-10 11:38:17 +02:00
parent 6dfd941c44
commit c6c3f54d9b

View File

@ -5,7 +5,7 @@ import colors from 'config/colors';
import React, { Component } from 'react';
type Props = {
pathname: string;
}
type State = {
@ -79,7 +79,7 @@ class Indicator extends Component<Props, State> {
render() {
return (
<Wrapper style={this.state.style}>{ this.props.pathname }</Wrapper>
<Wrapper style={this.state.style} />
);
}
}