larxius commited on
Commit
53c3fd2
·
verified ·
1 Parent(s): 12d9ad7

Update frontend/src/components/Layout.jsx

Browse files
Files changed (1) hide show
  1. frontend/src/components/Layout.jsx +2 -0
frontend/src/components/Layout.jsx CHANGED
@@ -197,6 +197,8 @@ export const Layout = ({ children }) => {
197
 
198
  if (user?.role === 'super_admin') {
199
  navItems.push({ to: '/super-admin', label: 'Global Management', icon: 'admin_panel_settings' });
 
 
200
  }
201
 
202
  return (
 
197
 
198
  if (user?.role === 'super_admin') {
199
  navItems.push({ to: '/super-admin', label: 'Global Management', icon: 'admin_panel_settings' });
200
+ } else if (user?.role === 'support_engineer') {
201
+ navItems.push({ to: '/support', label: 'Support Operations', icon: 'support_agent' });
202
  }
203
 
204
  return (