build errors fix

This commit is contained in:
Saumya 2025-07-21 11:19:32 +05:30
parent 8188a83a6d
commit d1be6a38da
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);
}