Skip to content

Commit

Permalink
fix: auto triggering of signout onClick when there are no orgs
Browse files Browse the repository at this point in the history
  • Loading branch information
tibuurcio committed Jul 22, 2024
1 parent 87f8a71 commit d2645fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const GlobalNavigation = ({ showSuiteLogo = true, ...props }: IGlobalNavi
avatarOptions={props.avatarOptions}
/>
) : (
!!props.navigationButtonItemOptions?.onClick() && (
!!props.navigationButtonItemOptions?.onClick && (
<NavigationItem
type="link"
icon={<Icon name="signout" />}
Expand Down

0 comments on commit d2645fd

Please sign in to comment.