Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
clintandrewhall committed Apr 28, 2023
1 parent 839ef70 commit cf0f9a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function createLazyObservabilityPageTemplate({
return (pageTemplateProps: LazyObservabilityPageTemplateProps) => {
const isSidebarEnabled = useObservable(isSidebarEnabled$);
const { showSolutionNav: showSolutionNavProp, ...props } = pageTemplateProps;
const showSolutionNav = !!showSolutionNavProp && isSidebarEnabled;
const showSolutionNav = !!showSolutionNavProp || isSidebarEnabled;

return (
<React.Suspense fallback={null}>
Expand Down

0 comments on commit cf0f9a5

Please sign in to comment.