Merge pull request #1031 from escapade-mckv/fix-ux-issues

build errors fix
This commit is contained in:
Bobbie 2025-07-21 11:20:27 +05:30 committed by GitHub
commit 5b84eedfb1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ export const TabsNavigation = ({ activeTab, onTabChange, onCreateAgent }: TabsNa
const handleTabSelection = (value: string) => {
if (value === 'create-agent') {
onCreateAgent && onCreateAgent();
onCreateAgent?.();
} else {
onTabChange(value);
}