From f8ca3a860debc211244cb17392e050a7b166855a Mon Sep 17 00:00:00 2001 From: paul-nothaft <40865108-paul-nothaft@users.noreply.replit.com> Date: Thu, 11 Sep 2025 14:25:07 +0000 Subject: [PATCH] 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 --- .replit | 4 ---- client/src/components/BottomNavigation.tsx | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.replit b/.replit index 4f7eaad..61099cd 100644 --- a/.replit +++ b/.replit @@ -18,10 +18,6 @@ externalPort = 80 localPort = 35345 externalPort = 3002 -[[ports]] -localPort = 39333 -externalPort = 3001 - [[ports]] localPort = 41353 externalPort = 3000 diff --git a/client/src/components/BottomNavigation.tsx b/client/src/components/BottomNavigation.tsx index f7d70a9..c95f1ab 100644 --- a/client/src/components/BottomNavigation.tsx +++ b/client/src/components/BottomNavigation.tsx @@ -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 },