diff options
Diffstat (limited to 'server/sonar-web/src/main/js/components/nav/NavBar.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/components/nav/NavBar.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/components/nav/NavBar.tsx b/server/sonar-web/src/main/js/components/nav/NavBar.tsx index e44a3e9d722..19397032533 100644 --- a/server/sonar-web/src/main/js/components/nav/NavBar.tsx +++ b/server/sonar-web/src/main/js/components/nav/NavBar.tsx @@ -19,14 +19,13 @@ */ import * as React from 'react'; import * as classNames from 'classnames'; -import NavBarNotif from './NavBarNotif'; import './NavBar.css'; interface Props { children?: any; className?: string; height: number; - notif?: React.ReactElement<NavBarNotif>; + notif?: React.ReactNode; } export default function NavBar({ children, className, height, notif, ...other }: Props) { |