diff --git a/src/components/Sidebar/index.tsx b/src/components/Sidebar/index.tsx index 29ddc19..cfcbd15 100644 --- a/src/components/Sidebar/index.tsx +++ b/src/components/Sidebar/index.tsx @@ -9,7 +9,9 @@ const Sidebar = () => { return ( - } color={role} onClick={() => {}} /> + {role !== 'admin' && ( + } color={role} onClick={() => {}} /> + )} ); };