fix: Replace History with AI Chat in mobile bottom navigation
Some checks failed
CI/CD Pipeline / Build Application (push) Has been cancelled
CI/CD Pipeline / Lint and Test (push) Has been cancelled
CI/CD Pipeline / E2E Tests (push) Has been cancelled

This commit is contained in:
2025-10-03 15:10:37 +00:00
parent 8f150cbf59
commit f0e7c5a21b
2 changed files with 45 additions and 34 deletions

View File

@@ -7,7 +7,7 @@ import {
Home,
Timeline,
Insights,
History,
Chat,
Mic,
} from '@mui/icons-material';
import { useTranslation } from '@/hooks/useTranslation';
@@ -23,7 +23,7 @@ export const TabBar = () => {
{ label: t('navigation.track'), icon: <Timeline />, value: '/track' },
{ label: '', icon: null, value: 'voice' }, // Placeholder for center button
{ label: t('navigation.insights'), icon: <Insights />, value: '/insights' },
{ label: t('navigation.history'), icon: <History />, value: '/history' },
{ label: t('navigation.aiChat'), icon: <Chat />, value: '/ai-assistant' },
];
return (