diff --git a/components/dashboard/src/Menu.tsx b/components/dashboard/src/Menu.tsx index 421d0ec028fcda..680a491e2ffdb9 100644 --- a/components/dashboard/src/Menu.tsx +++ b/components/dashboard/src/Menu.tsx @@ -231,7 +231,10 @@ export default function Menu() { link: `/t/${team.slug}/members`, }, ]; - if (showUsageView || (teamBillingMode && teamBillingMode.mode === "usage-based")) { + if ( + currentUserInTeam?.role === "owner" && + (showUsageView || (teamBillingMode && teamBillingMode.mode === "usage-based")) + ) { teamSettingsList.push({ title: "Usage", link: `/t/${team.slug}/usage`,