diff --git a/src/app.js b/src/app.js
index 45498b2..9efb5cd 100644
--- a/src/app.js
+++ b/src/app.js
@@ -121,8 +121,12 @@ class App extends React.Component {
{ pages.scenarios ? : '' }
{ pages.scenarios ? : '' }
{ pages.scenarios ? : '' }
- { pages.infrastructure ? : '' }
-
+ { currentUser.role === "Admin" || pages.infrastructure ?
+
+ : '' }
+ { currentUser.role === "Admin" || pages.infrastructure ?
+
+ : '' }
{ pages.account ? : '' }
{ pages.api ? : '' }
diff --git a/src/common/menu.js b/src/common/menu.js
index 4dad81b..a647cc6 100644
--- a/src/common/menu.js
+++ b/src/common/menu.js
@@ -101,7 +101,9 @@ class SidebarMenu extends React.Component {
:
- Home
- Scenarios
- - Infrastructure
+ {this.props.currentRole === 'Admin' || values.pages.infrastructure ?
+ - Infrastructure
: ''
+ }
{this.props.currentRole === 'Admin' ?
- Users
: ''
}