Skip to content

Commit

Permalink
feat: hide notifications from oss version (#3352)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew committed Mar 20, 2023
1 parent a172022 commit 476f246
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frontend/src/component/menu/Header/Header.tsx
Expand Up @@ -251,7 +251,10 @@ const Header: VFC = () => {
}
/>
<ConditionallyRender
condition={Boolean(uiConfig?.flags?.notifications)}
condition={
Boolean(uiConfig?.flags?.notifications) &&
!isOss
}
show={<Notifications />}
/>
<Tooltip title="Documentation" arrow>
Expand Down

0 comments on commit 476f246

Please sign in to comment.