diff --git a/web/components/nav/sidebar.tsx b/web/components/nav/sidebar.tsx
index c17286c2..839ae0d8 100644
--- a/web/components/nav/sidebar.tsx
+++ b/web/components/nav/sidebar.tsx
@@ -41,7 +41,13 @@ function getNavigation() {
},
...(IS_PRIVATE_MANIFOLD
- ? []
+ ? [
+ {
+ name: 'Leaderboards',
+ href: `/leaderboards`,
+ icon: TrendingUpIcon,
+ },
+ ]
: [{ name: 'Get M$', href: '/add-funds', icon: CashIcon }]),
]
}
@@ -245,10 +251,6 @@ export default function Sidebar(props: { className?: string }) {
{navigationOptions.map((item) => (
))}
- }
- />
{/* Spacer if there are any groups */}
{memberItems.length > 0 && (