feat: set tab value to robots

This commit is contained in:
amhsirak
2025-01-09 23:17:58 +05:30
parent 6c599da661
commit 7cba1b7c05

View File

@@ -14,7 +14,7 @@ interface MainMenuProps {
handleChangeContent: (newValue: string) => void;
}
export const MainMenu = ({ value = 'recordings', handleChangeContent }: MainMenuProps) => {
export const MainMenu = ({ value = 'robots', handleChangeContent }: MainMenuProps) => {
const theme = useTheme();
const { t } = useTranslation();
const navigate = useNavigate();
@@ -68,7 +68,7 @@ export const MainMenu = ({ value = 'recordings', handleChangeContent }: MainMenu
textAlign: 'left',
fontSize: 'medium',
}}
value="recordings"
value="robots"
label={t('mainmenu.recordings')}
icon={<AutoAwesome />}
iconPosition="start"