diff --git a/public/app/core/components/AppChrome/TopBar/InviteUserButton.tsx b/public/app/core/components/AppChrome/TopBar/InviteUserButton.tsx index 8a4c45c7608..c9622d1efc1 100644 --- a/public/app/core/components/AppChrome/TopBar/InviteUserButton.tsx +++ b/public/app/core/components/AppChrome/TopBar/InviteUserButton.tsx @@ -31,10 +31,14 @@ export function InviteUserButton() { } const handleClick = () => { - if (shouldShowUpgrade) { - performUpgradeClick('top_bar_right', 'upgrade-user-top-bar'); - } else { - performInviteUserClick('top_bar_right', 'invite-user-top-bar'); + try { + if (shouldShowUpgrade) { + performUpgradeClick('top_bar_right', 'upgrade-user-top-bar'); + } else { + performInviteUserClick('top_bar_right', 'invite-user-top-bar'); + } + } catch (error) { + console.error('Failed to handle button click:', error); } };