From c6c3f54d9bdaa478b96eba35a9bdc5d7b2aec666 Mon Sep 17 00:00:00 2001 From: Szymon Lesisz Date: Wed, 10 Oct 2018 11:38:17 +0200 Subject: [PATCH] quickfix: remove pathname from props in TopNavigationAccount component --- .../TopNavigationAccount/components/Indicator/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/Wallet/components/TopNavigationAccount/components/Indicator/index.js b/src/views/Wallet/components/TopNavigationAccount/components/Indicator/index.js index 95c93e28..7c036207 100644 --- a/src/views/Wallet/components/TopNavigationAccount/components/Indicator/index.js +++ b/src/views/Wallet/components/TopNavigationAccount/components/Indicator/index.js @@ -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 { render() { return ( - { this.props.pathname } + ); } }