diff --git a/web/src/components/BottomNavBar.tsx b/web/src/components/BottomNavBar.tsx index 75985ba..fb76adf 100644 --- a/web/src/components/BottomNavBar.tsx +++ b/web/src/components/BottomNavBar.tsx @@ -9,13 +9,7 @@ function IconLibrary() { ); } -function IconPlay() { - return ( - - - - ); -} + function IconSettings() { return ( @@ -90,7 +84,6 @@ export function BottomNavBar() { // Derive active states const isLibrary = !!matchPath("/bands/:bandId", location.pathname) || !!matchPath("/bands/:bandId/sessions/:sessionId", location.pathname); - const isPlayer = !!matchPath("/bands/:bandId/songs/:songId", location.pathname); const isSettings = location.pathname.startsWith("/settings"); return ( @@ -121,13 +114,7 @@ export function BottomNavBar() { } }} /> - } - label="Player" - active={isPlayer} - onClick={() => currentBandId ? navigate(`/bands/${currentBandId}/songs`) : {}} - disabled={!currentBandId} - /> + } label="Members"