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 },