Remove incorrect task count badge from navigation menu

Removes the hardcoded badge count from the 'Tasks' tab in the BottomNavigation component.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: ceced2fc-aa46-458d-ba87-ddd4b7bb1518
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/659922a9-0087-461c-90dd-6d9a58b81d4d/ceced2fc-aa46-458d-ba87-ddd4b7bb1518/bLPlkWk
This commit is contained in:
paul-nothaft
2025-09-11 14:25:07 +00:00
parent 0076ad98c6
commit f8ca3a860d
2 changed files with 1 additions and 5 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ export default function BottomNavigation({ onTabChange, onCreateTask, activeTab
const [currentTab, setCurrentTab] = useState(activeTab);
const tabs = [
{ id: 'tasks', label: 'Tasks', icon: Home, badge: 3 },
{ id: 'tasks', label: 'Tasks', icon: Home },
{ id: 'calendar', label: 'Calendar', icon: Calendar },
{ id: 'create', label: 'Create', icon: Plus, isCreate: true },
{ id: 'kanban', label: 'Board', icon: LayoutGrid },