diff --git a/src/component/drawerContent/view.js b/src/component/drawerContent/view.js index 124fdaf..9078a9b 100644 --- a/src/component/drawerContent/view.js +++ b/src/component/drawerContent/view.js @@ -49,7 +49,12 @@ class DrawerContent extends React.PureComponent { )} {menuItems.map(item => { - const focused = activeItemKey === item.route; + const focused = + activeItemKey === item.route || + (activeItemKey === Constants.FULL_ROUTE_NAME_DISCOVER && + item.route === Constants.DRAWER_ROUTE_DISCOVER) || + (activeItemKey === Constants.FULL_ROUTE_NAME_WALLET && + item.route === Constants.DRAWER_ROUTE_WALLET); return (