diff --git a/frontend/src/layouts/Authenticated.tsx b/frontend/src/layouts/Authenticated.tsx index 8a4bbeb..f102e5b 100644 --- a/frontend/src/layouts/Authenticated.tsx +++ b/frontend/src/layouts/Authenticated.tsx @@ -148,6 +148,10 @@ export default function LayoutAuthenticated({ children, permission }: Props) { return item.href === '/client-portal' || item.href === '/profile'; } + if (item.href === '/client-portal' || item.href === '/users/users-list') { + return false; + } + if (!item.permission) { return true; }