Skip to content

Commit

Permalink
chore: remove disableInteractions
Browse files Browse the repository at this point in the history
  • Loading branch information
Leobel Izquierdo committed Sep 16, 2024
1 parent 286ac26 commit 33410f4
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export interface IGlobalNavigationProps {
onClick: () => void
withoutContainer?: boolean
}
disableInteractions?: boolean
suiteSelectorOptions?: ISuiteSelectorOptions
/**
* @deprecated This variant is a temporary fix for new component.
Expand Down Expand Up @@ -77,7 +76,7 @@ export const GlobalNavigation = ({ showSuiteLogo = true, ...props }: IGlobalNavi
{props.onSearchClick && <NavigationSearch onClick={props.onSearchClick} />}
{props.createItems && <NavigationCreate createItems={props.createItems} />}
</Center>
<NavigationList items={props.tools} disableInteractions={props.disableInteractions} />
<NavigationList items={props.tools} />
</div>
<div>
{props.notificationCenter && (
Expand All @@ -86,7 +85,7 @@ export const GlobalNavigation = ({ showSuiteLogo = true, ...props }: IGlobalNavi
actions={props.notificationCenter.actions}
/>
)}
<NavigationList items={props.management} disableInteractions={props.disableInteractions} />
<NavigationList items={props.management} />
{props.orgs ? (
<WorkspaceSelector
orgs={props.orgs}
Expand Down

0 comments on commit 33410f4

Please sign in to comment.