From b559f3cbd4eb314e48783a10655e3a673884e187 Mon Sep 17 00:00:00 2001 From: Adrian Oprea Date: Wed, 17 Jan 2018 14:40:33 +0200 Subject: [PATCH] refactor(Navigation): Use identifier instead of screenName Signed-off-by: Adrian Oprea --- app/javascript/src/components/Navigation/index.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/javascript/src/components/Navigation/index.jsx b/app/javascript/src/components/Navigation/index.jsx index 0ced14fce..75a532f36 100644 --- a/app/javascript/src/components/Navigation/index.jsx +++ b/app/javascript/src/components/Navigation/index.jsx @@ -151,9 +151,8 @@ Navigation.propTypes = { // Map the states from store to component props const mapStateToProps = ({ current_team }) => ({ current_team }); - const NavigationWithExtras = withExtras({ - screenName: 'navigation', + identifier: 'navigation', config: massageConfiguration(addonsConfig, 'navigation'), }, componentLoader)(Navigation);